Skip to main content

CoinAPI Python REST Client

Project description

CoinAPI REST

Coverage Quality Gate Status Ruff image image

Installation

pip install coinapi-rest

Example Usage

Example

import coinapi

s = coinapi.CoinAPI(
    api_key="<YOUR_API_KEY_HERE>",
)


res = s.metadata.get_v1_assets(filter_asset_id='<value>', include_supply=False)

if res.content is not None:
    # handle response
    pass

Available Resources and Operations

metadata

exchange_rates

indexes

metrics

order_book

order_book_l3

quotes

ohlcv

trades

Error Handling

Handling errors in this SDK should largely match your expectations. All operations return a response object or raise an error. If Error objects are specified in your OpenAPI Spec, the SDK will raise the appropriate Error type.

Error Object Status Code Content Type
errors.CoinAPIError 4x-5xx /

Example

import coinapi
from coinapi.models import errors

s = coinapi.CoinAPI(
    api_key="<YOUR_API_KEY_HERE>",
)

res = None
try:
    res = s.metadata.get_v1_assets(filter_asset_id='<value>', include_supply=False)
except errors.CoinAPIError as e:
    # handle exception
    raise (e)

if res.content is not None:
    # handle response
    pass

Server Selection

Select Server by Index

You can override the default server globally by passing a server index to the server_idx: int optional parameter when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:

# Server Variables
0 https://rest.coinapi.io None

Example

import coinapi

s = coinapi.CoinAPI(
    server_idx=0,
    api_key="<YOUR_API_KEY_HERE>",
)


res = s.metadata.get_v1_assets(filter_asset_id='<value>', include_supply=False)

if res.content is not None:
    # handle response
    pass

Override Server URL Per-Client

The default server can also be overridden globally by passing a URL to the server_url: str optional parameter when initializing the SDK client instance. For example:

import coinapi

s = coinapi.CoinAPI(
    server_url="https://rest.coinapi.io",
    api_key="<YOUR_API_KEY_HERE>",
)


res = s.metadata.get_v1_assets(filter_asset_id='<value>', include_supply=False)

if res.content is not None:
    # handle response
    pass

Custom HTTP Client

The CoinAPI SDK makes API calls using the httpx HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with a custom httpx.Client object.

For example, you could specify a header for every request that this sdk makes as follows:

import coinapi
import httpx

http_client = httpx.Client(headers={'x-custom-header': 'someValue'})
s = coinapi.CoinAPI(api_key="<YOUR_API_KEY_HERE>", client=http_client)

Authentication

Per-Client Security Schemes

This SDK supports the following security scheme globally:

Name Type Scheme
api_key apiKey API key

To authenticate with the API the api_key parameter must be set when initializing the SDK client instance. For example:

import coinapi

s = coinapi.CoinAPI(
    api_key="<YOUR_API_KEY_HERE>",
)


res = s.metadata.get_v1_assets(filter_asset_id='<value>', include_supply=False)

if res.content is not None:
    # handle response
    pass

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

coinapi_rest-0.0.6.tar.gz (60.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

coinapi_rest-0.0.6-py3-none-any.whl (96.8 kB view details)

Uploaded Python 3

File details

Details for the file coinapi_rest-0.0.6.tar.gz.

File metadata

  • Download URL: coinapi_rest-0.0.6.tar.gz
  • Upload date:
  • Size: 60.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.17

File hashes

Hashes for coinapi_rest-0.0.6.tar.gz
Algorithm Hash digest
SHA256 35af8bc4e1af61c0af14a4a9a45328884c483a8b57f0baf223cc9afe8e796736
MD5 299ad8d61ead349dfc10cf81744d49be
BLAKE2b-256 d4a78c202494664d115bff900695bc91b7fad7aaf11f647d900ac609bf08c192

See more details on using hashes here.

File details

Details for the file coinapi_rest-0.0.6-py3-none-any.whl.

File metadata

File hashes

Hashes for coinapi_rest-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 d42efd37bbe5e215cc9ab2fa3b707d1c389d659efe7f0164ac9720416549dad4
MD5 6100febb7f52c3cf9c9f679f95289199
BLAKE2b-256 e3dc1056d89f118604a079b4848f5bd8b01667632f9654c5f423012e6671fbed

See more details on using hashes here.

Supported by

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