Overview

Market data endpoints for crypto asset prices. Use these to render dashboards, drive alert thresholds, or quote conversions in your UI without integrating a third-party price feed. All routes require an API key with the insights:read permission. Prices are global and not org-scoped.

Symbols currently tracked: BTC, ETH, USDT, USDC, SOL, TRX, POL.


List Asset Prices

Use Case

Returns the latest snapshot for every tracked asset.

List Asset Prices

Query Parameters
1
assetsstring

Optional comma-separated filter (e.g., `BTC,ETH,USDT`).

Query

List Asset Prices Response
1
dataAssetPriceResponse[]

Per-asset price snapshots.

2
symbolstring

Asset symbol (e.g., `BTC`).

3
price_usdnumber

Latest USD price.

4
change_24hnumber

Percent change over the last 24 hours.

5
change_7dnumber

Percent change over the last 7 days.

6
market_capstring

Market capitalization.

7
volume_24hstring

24-hour traded volume.

List Asset Prices Response

Get Asset Price

Use Case

Returns the latest snapshot for a single asset by symbol.

Get Asset Price

Path Parameters
1
:symbolstringRequired

Asset symbol (e.g., `BTC`). Case-insensitive.

Request

Get Asset Price Response
1
dataAssetPriceResponse

Latest snapshot for the requested asset. `404` if the symbol is not tracked.

2
symbolstring

Asset symbol.

3
price_usdnumber

Latest USD price.

4
change_24hnumber

Percent change over the last 24 hours.

5
change_7dnumber

Percent change over the last 7 days.

Get Asset Price Response

Get Asset Price History

Use Case

Returns historical price data points for an asset.

Price History

Path Parameters
1
:symbolstringRequired

Asset symbol.

Query Parameters
1
intervalstring

One of `1h`, `4h`, `1d`, `1w`, `1M`, `1Y`. Default `1h`.

2
limitinteger

Number of points to return (1 - 500). Default 24.

Query

Get Asset Price History Response
1
dataPriceHistoryResponse

Historical points for the asset. `high` and `low` are populated only for intervals where range data is available.

2
data.symbolstring

Asset symbol.

3
data.intervalstring

Echo of the requested interval.

4
data.data_pointsPricePoint[]

Array of `(timestamp, price, high?, low?)` entries.

5
timestampstring (RFC3339)

Sample timestamp.

6
pricenumber

USD price at the sample.

7
highnumber

Interval high (when range data is available).

8
lownumber

Interval low (when range data is available).

Get Asset Price History Response
Did you find this page useful?