debank_get_token_info
Retrieve token data including current and historical prices, decimals, symbols, logos, and verification status across supported blockchains. Supports single or batch queries.
Instructions
Get token information and prices from DeBank.
This tool retrieves comprehensive token data including current prices, historical prices, decimals, symbols, logos, and verification status.
Args: chain_id: Blockchain ID (required). Examples: "eth", "bsc", "polygon" token_id: Single token contract address (0x prefixed) token_ids: List of token addresses (max 100, 0x prefixed) date: Historical date in YYYY-MM-DD format for price lookup
Returns: Token object(s) with the following structure: { "id": "0xdac17f958d2ee523a2206206994597c13d831ec7", "chain": "eth", "name": "Tether USD", "symbol": "USDT", "price": 1.0, "decimals": 6, "logo_url": "https://...", "is_verified": true, "is_core": true }
Examples: - Get USDT: debank_get_token_info( chain_id="eth", token_id="0xdac17f958d2ee523a2206206994597c13d831ec7" ) - Get multiple tokens: debank_get_token_info( chain_id="eth", token_ids=["0xdac17f958d2ee523a2206206994597c13d831ec7", "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"] ) - Get historical price: debank_get_token_info( chain_id="eth", token_id="0xdac17f958d2ee523a2206206994597c13d831ec7", date="2024-01-15" )
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | ||
| chain_id | Yes | ||
| token_id | No | ||
| token_ids | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||