get https://api.parsiq.net/balances///addresses//tokens
Get token & native balances for an EOA address
Authorization required to use this endpoint
To get your API key, follow the instruction here.
The Get Balances by Address endpoint provides the balance of a specific EOA address. You must specify a wallet address to search by. A successful request to the endpoint will return a JSON response with the balance data, marked as items, for a particular wallet address. The items will contain the fields with their id
, value_raw
, value_calculated
, seen_at_block_number
, and the token
data.
The cURL request shown below can give you the gist of how the endpoint operates. Be sure to replace YOUR_API_KEY
with your actual API key.
curl --location 'https://api.parsiq.net/balances/eip155-1/v1/addresses/0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045/tokens' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY'