For the complete documentation index, see llms.txt. This page is also available as Markdown.

CoinMetricsClient.get_stream_asset_metrics

coinmetrics.api_client.CoinMetricsClient.get_stream_asset_metrics(
    assets,
    metrics,
    frequency=None,
    backfill=Backfill.LATEST,
    ignore_forbidden_errors=None,
    ignore_unsupported_errors=None,
)

Returns timeseries stream of metrics for specified assets.

  • Parameters:

    • assets (list (str ) , str) -- list of asset names, e.g. 'btc'

    • metrics (list (str ) , str) -- list of asset-specific metric names, e.g. 'PriceUSD'

    • frequency (str) -- frequency of the returned timeseries, e.g 15s, 1d, etc.

    • backfill (str) -- What data should be sent upon a connection ("latest" or "none"). By default the latest values are sent just before real-time data.

    • ignore_forbidden_errors (bool) -- Default: false. Ignore HTTP 403 Forbidden errors

    • ignore_unsupported_errors (bool) -- Default: false. Ignore errors for unsupported assets, metrics or frequencies.

Returns:

  • CmStream

    • Asset Metrics timeseries stream.

Last updated

Was this helpful?