fetchTokenPriceByAddress
Retrieve token prices by providing contract addresses and blockchain networks, enabling quick and accurate token value queries across multiple chains via Alchemy MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
addresses | Yes | A list of token contract address and network pairs |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"addresses": {
"description": "A list of token contract address and network pairs",
"items": {
"additionalProperties": false,
"properties": {
"address": {
"description": "The token contract address to query. e.g. \"0x1234567890123456789012345678901234567890\"",
"type": "string"
},
"network": {
"description": "The blockchain network to query. e.g. \"eth-mainnet\" or \"base-mainnet\"",
"type": "string"
}
},
"required": [
"address",
"network"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"addresses"
],
"type": "object"
}