getTokenDetails
Retrieve detailed token information, including address and network ID, for analysis and tracking across multiple blockchains using DexPaprika MCP server.
Instructions
Get detailed information about a specific token on a network. First use getNetworks to get valid network IDs.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
network | Yes | Network ID from getNetworks (e.g., "ethereum", "solana") | |
tokenAddress | Yes | Token address or identifier |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"network": {
"description": "Network ID from getNetworks (e.g., \"ethereum\", \"solana\")",
"type": "string"
},
"tokenAddress": {
"description": "Token address or identifier",
"type": "string"
}
},
"required": [
"network",
"tokenAddress"
],
"type": "object"
}