Bulk metrics

Bulk endpoints are a specialized extension of our classical metric endpoints, designed for scenarios where fetching data for multiple assets or parameter combinations in a single request is essential. While our classical endpoints are ideal for most use cases, fetching data systematically for a large number of assets or combinations will require an impractical number of API calls. Bulk endpoints address this need by providing metric values for all parameter combinations (some parameters excepted, see request format section) in a single response, accessible under /v1/metrics/<metric path>/bulk.

To find out if a metric has a bulk variant, view the bulk_supported response field from the metadata/metric endpoint (set path query parameter to the regular metric's path).

Request format

Bulk metric requests support the same parameters as the regular metric. However, the semantics of parameters are different besides the following set of unchanged parameters:

  • required since parameter s (see Timerange constrains section)

  • until parameter u

  • resolution parameter i (defaults to 24h)

  • currency parameter c (defaults to NATIVE)

  • format parameter f (defaults to json, note: for now only JSON responses are supported)

Remaining parameters can be set to multiple values by specifying the parameter multiple times in the query parameters. For example/v1/metrics/addresses/active?a=BTC&a=ETH applies the [BTC, ETH] whitelist to a, resulting in a response with bulk entries filtered on either of these assets.\

All values can be requested by setting a wildcard (*) as the parameter filter value, eg. a=*.

If no filter is set for a parameter then its respective default value will be applied—mimicking the behavior of the non-bulk metric variant.

To view what parameters are supported and what values these may be filtered on, view the metadata/metric endpoint with path set to the regular metric's path.

Response format

Bulk metric responses contain the values for every parameter combination at each timestamp in the timeseries. To accommodate this the response format replaces the v and o components of the regular metric's response with a bulk component. If the regular metric is of v response format, bulk is of the following format:[{<parameter_i>: <parameter_value_i>, "v": <value>}]. If the regular metric is of o response format, bulk is of the following format:[{<parameter_i>: <parameter_value_i>, "category": <o_key>, "v": <o_value>}].

Aggregations are not excluded and special aggregated values of <parameter_value_i> and <o_key> are included by default.\

Bulk timeseries are placed under a root level data key, to reserve space for any possible metadata we may add to the response in a later release.

Response example: v metric

If a metric with v response format has parameters:

  • asset parameter a

  • exchange parameter e

then the bulk metric variant will have the following response format (with example values):

Response example: o metric

If a metric with o response format has parameters:

  • asset parameter a

And has following keys in the o response:

  • 1d_1w

  • more_10y

Then the bulk metric variant will have the following response format (with example values):

Example Code

Take a look at our example notebook Creating a sector market cap chart, to find some example code and a hands-on guide for bulk metrics.

A minimal Python-based example to retrieve the latest daily values for all assets by setting a=* and providing since as the Unix timestamp for yesterday at 00:00:00 UTC.

Timerange constraints

The maximum queryable timerange within 1 bulk request is restricted:

  • for 10m and 1h resolutions: 10 days

  • for 1d resolution: 31 days

  • for 1w and 1month resolutions: 93 days

Use-Cases for bulk metrics

Bulk endpoints are recommended for use cases where reducing the number of parameter-driven API calls is a priority. Due to their time-range constraints, bulk endpoints are not always recommended for retrieving extended historical data.

Example 1: MVRV for 1,500 assets

To retrieve MVRV for 1,500 assets at a 10-minute interval using the regular endpoint, 1,500 individual API calls would be required per cycle, with each call consuming 1 API credit. Due to rate-limit constraints, introducing delays between requests would likely be necessary.

By contrast, the bulk endpoint supports fetching data for all assets in a single request. Although this request uses 1,500 credits, it retrieves data more quickly and enables additional metrics to be updated at 10-minute intervals without exceeding the request limit.

Example 2: MVRV for 1,500 assets — full history (daily values)

When using the regular endpoint, each API call returns the full available historical range. In this scenario, 1,500 requests—consuming a total of 1,500 credits—are sufficient to obtain the complete history for all assets.

With the bulk endpoint, the maximum supported time range for daily-resolution data is 31 days. Retrieving the full history therefore requires iterating through time windows. Assuming the earliest data point is in 2009, approximately 200 time windows are needed as of December 2025. If MVRV were available for all 1,500 assets from 2009 onward, this would require 200 bulk requests, consuming up to 200 × 1,500 = 300,000 credits. In practice, the total credit usage is lower because many assets were launched later and therefore have shorter histories. Again bulk endpoints significantly reduce the number of required requests and improve retrieval speed, which however may be less critical for building historical datasets as this comes at a substantially higher credit consumption.

Closing remarks

  • There are a few metrics where missing values are not filled in the bulk response (even though the regular metric does apply a fill), this is intentional as otherwise the bulk response size for these few metrics would become excessively large with a majority of datapoints representing filled missing values.

Last updated