GET
/
v2
/
data
/
evm
/
token-ownership
/
{network}
/
{address}
List token addresses for account
curl --request GET \
  --url https://api.cdp.coinbase.com/platform/v2/data/evm/token-ownership/{network}/{address} \
  --header 'Authorization: Bearer <token>'
{
  "accountAddress": "0x742d35Cc6634C0532925a3b844Bc454e4438f44e",
  "tokenAddresses": [
    "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "0x4200000000000000000000000000000000000006",
    "0x0000000000000000000000000000000000000000"
  ],
  "totalCount": 15
}

Authorizations

Authorization
string
header
required

A JWT signed using your CDP API Key Secret, encoded in base64. Refer to the Generate Bearer Token section of our Authentication docs for information on how to generate your Bearer Token.

Path Parameters

network
enum<string>
required

The blockchain network to query.

Available options:
base,
base-sepolia
address
string
required

The account address to analyze for token interactions.

Response

Token addresses retrieved successfully.

Response containing token addresses that an account has received.

accountAddress
string

The account address that was queried.

Example:

"0x742d35Cc6634C0532925a3b844Bc454e4438f44e"

tokenAddresses
string[]

List of token contract addresses that the account has received.

Token contract address.

Example:
[
"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"0x4200000000000000000000000000000000000006",
"0x0000000000000000000000000000000000000000"
]
totalCount
integer

Total number of unique token addresses discovered.

Required range: x >= 0
Example:

15