get_token_historical_data
Retrieve historical price and trading data for a specific token on SailFish DEX by specifying the token address and desired time range in days.
Instructions
Get historical data for a token on SailFish DEX
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days | No | Number of days of data to return (default: 7) | |
tokenId | Yes | Token address |
Input Schema (JSON Schema)
{
"properties": {
"days": {
"description": "Number of days of data to return (default: 7)",
"type": "number"
},
"tokenId": {
"description": "Token address",
"type": "string"
}
},
"required": [
"tokenId"
],
"type": "object"
}