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.
Query Parameters
Optional comma-separated filter (e.g., `BTC,ETH,USDT`).
List Asset Prices Response
Per-asset price snapshots.
Asset symbol (e.g., `BTC`).
Latest USD price.
Percent change over the last 24 hours.
Percent change over the last 7 days.
Market capitalization.
24-hour traded volume.
Get Asset Price
Use Case
Returns the latest snapshot for a single asset by symbol.
Path Parameters
Asset symbol (e.g., `BTC`). Case-insensitive.
Get Asset Price Response
Latest snapshot for the requested asset. `404` if the symbol is not tracked.
Asset symbol.
Latest USD price.
Percent change over the last 24 hours.
Percent change over the last 7 days.
Get Asset Price History
Use Case
Returns historical price data points for an asset.
Path Parameters
Asset symbol.
Query Parameters
One of `1h`, `4h`, `1d`, `1w`, `1M`, `1Y`. Default `1h`.
Number of points to return (1 - 500). Default 24.
Get Asset Price History Response
Historical points for the asset. `high` and `low` are populated only for intervals where range data is available.
Asset symbol.
Echo of the requested interval.
Array of `(timestamp, price, high?, low?)` entries.
Sample timestamp.
USD price at the sample.
Interval high (when range data is available).
Interval low (when range data is available).