dome_chainlink_prices
Fetches historical crypto price data from Chainlink. 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: slash-separated (e.g., btc/usd, eth/usd).
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 slash-separated (e.g., btc/usd, eth/usd, sol/usd, xrp/usd). | |
| 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. |