fetchTokenPriceHistoryBySymbol
Retrieve historical price data for a specific cryptocurrency by symbol, date range, and interval using this Alchemy MCP Server tool. Ideal for analyzing token price trends over time.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endTime | Yes | The end time date to query. e.g. "2021-01-01" | |
interval | Yes | The interval to query. e.g. "1d" or "1h" | |
startTime | Yes | The start time date to query. e.g. "2021-01-01" | |
symbol | Yes | The token symbol to query. e.g. "BTC" or "ETH" |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"endTime": {
"description": "The end time date to query. e.g. \"2021-01-01\"",
"type": "string"
},
"interval": {
"description": "The interval to query. e.g. \"1d\" or \"1h\"",
"type": "string"
},
"startTime": {
"description": "The start time date to query. e.g. \"2021-01-01\"",
"type": "string"
},
"symbol": {
"description": "The token symbol to query. e.g. \"BTC\" or \"ETH\"",
"type": "string"
}
},
"required": [
"symbol",
"startTime",
"endTime",
"interval"
],
"type": "object"
}