dome_binance_prices
Fetches historical crypto price data from Binance. Returns price data for a specific currency pair over an optional time range. When no time range is provided, returns the most recent price. All timestamps are in Unix milliseconds. Currency format: lowercase alphanumeric with no separators (e.g., btcusdt, ethusdt).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of prices to return (default: 100, max: 100). When no time range is provided, limit is automatically set to 1. | |
| currency | Yes | The currency pair symbol. Must be lowercase alphanumeric with no separators (e.g., btcusdt, ethusdt, solusdt, xrpusdt). | |
| end_time | No | End time in Unix timestamp (milliseconds). If not provided along with start_time, returns the most recent price (limit 1). | |
| start_time | No | Start time in Unix timestamp (milliseconds). If not provided along with end_time, returns the most recent price (limit 1). | |
| pagination_key | No | Pagination key (base64-encoded) to fetch the next page of results. Returned in the response when more data is available. |