get_tokens_by_address
Retrieve detailed ERC20 token holdings for a wallet address, including contract details, market metrics, and balance. Supports pagination for comprehensive portfolio analysis, wallet auditing, and DeFi tracking.
Instructions
Get comprehensive ERC20 token holdings for an address with enriched metadata and market data.
Returns detailed token information including contract details (name, symbol, decimals), market metrics (exchange rate, market cap, volume), holders count, and actual balance (provided as is, without adjusting by decimals).
Essential for portfolio analysis, wallet auditing, and DeFi position tracking.
**SUPPORTS PAGINATION**: If response includes 'pagination' field, use the provided next_call to get additional pages.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Wallet address | |
chain_id | Yes | The ID of the blockchain | |
cursor | No | The pagination cursor from a previous response to get the next page of results. |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Wallet address",
"title": "Address",
"type": "string"
},
"chain_id": {
"description": "The ID of the blockchain",
"title": "Chain Id",
"type": "string"
},
"cursor": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The pagination cursor from a previous response to get the next page of results.",
"title": "Cursor"
}
},
"required": [
"chain_id",
"address"
],
"title": "get_tokens_by_addressArguments",
"type": "object"
}