getAccountPortfolio
Retrieve detailed token balances and coin metadata for any Ethereum wallet address, enabling comprehensive portfolio analysis and crypto research.
Instructions
Given a wallet address, return all token balances the account holds, including coin metadata.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}