Skip to main content

Refined Python library for interaction with Klarda's APIs.

Project description

Klarda Python SDK

Refined Python library for interaction with Klarda's APIs Klarda APIs

Klarda API Quickstart

1. Install Klarda Python SDK from PyPi using pip

pip install klarda-python-sdk

2. Initilize the SDK using our API key

Note: In order to use our API, you have to get you API key from Klarda's Dashboard.

Get your API key here https://dashboard.klarda.com/account-setting/api and provide it to the KlardaAPICollection class.

from klarda import KlardaAPICollection

klarda_api = KlardaAPICollection("YOUR_API_KEY")

3. Use the python sdk and call our api collection.

Note: More information about the available APIs can be seen in our documentation Klarda APIs Docs.

Klarda Market/Token API

from klarda import KlardaAPICollection
from klarda.types import GetTokenListRequest

klarda_api = KlardaAPICollection("YOUR_API_KEY")

response = klarda_api.get_token_list(
    params = GetTokenListRequest(
        page = 1,
        limit = 10,
        sort_by = "volume",
        sort_order = "desc"
    )
)

print(response)

More APIs description will be added in the future in this Readme

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

klarda_python_sdk-1.0.2.tar.gz (14.3 kB view hashes)

Uploaded Source

Built Distribution

klarda_python_sdk-1.0.2-py3-none-any.whl (16.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page