get_first_price_record
Retrieve the earliest timestamp price record for specific crypto tokens by providing their chain and address details. Ideal for tracking initial price data points.
Instructions
GET /coins/prices/first/{coins}
Get earliest timestamp price record for coins.
Parameters:
coins: comma-separated tokens in format {chain}:{address}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
coins | Yes |
Input Schema (JSON Schema)
{
"properties": {
"coins": {
"title": "Coins",
"type": "string"
}
},
"required": [
"coins"
],
"title": "get_first_price_recordArguments",
"type": "object"
}