get_token_info
Retrieve detailed information about any Ethereum token using its address hash. Access token metadata, contract details, and blockchain data for analysis and verification.
Instructions
Get detailed information about a specific token
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token | Yes | The token address hash |
Input Schema (JSON Schema)
{
"properties": {
"token": {
"description": "The token address hash",
"type": "string"
}
},
"required": [
"token"
],
"type": "object"
}