Skip to main content
GET
/
accounts
/
{id}
/
balances
cURL
curl --request GET \
  --url https://api.onchainden.com/api/v1/accounts/{id}/balances \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "accountId": "<string>",
    "balances": [
      {
        "networkId": 123,
        "symbol": "ETH",
        "name": "Ether",
        "amount": "1.5",
        "decimals": 123,
        "contractAddress": "<string>"
      }
    ],
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Include your API key in the Authorization header.

Path Parameters

id
string
required

Response

Account balances

data
object