fetchTokenPriceBySymbol
Retrieve real-time cryptocurrency prices by providing token symbols like BTC or ETH. Simplify blockchain price queries with this Alchemy MCP Server tool.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbols | Yes | A list of blockchaintoken symbols to query. e.g. ["BTC", "ETH"] |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"symbols": {
"description": "A list of blockchaintoken symbols to query. e.g. [\"BTC\", \"ETH\"]",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"symbols"
],
"type": "object"
}