get_token_data
Retrieve detailed token data by contract address on specified blockchain networks, including optional top pools information, for DeFi trading and analysis.
Instructions
Get specific token data by contract address
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | Token contract address | |
| include | No | Attributes to include: 'top_pools' (optional) | |
| network | Yes | Network ID (e.g., 'eth', 'bsc', 'polygon_pos') |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Token contract address",
"type": "string"
},
"include": {
"description": "Attributes to include: 'top_pools' (optional)",
"enum": [
"top_pools"
],
"type": "string"
},
"network": {
"description": "Network ID (e.g., 'eth', 'bsc', 'polygon_pos')",
"type": "string"
}
},
"required": [
"network",
"address"
],
"type": "object"
}