Skip to main content
GET
/
api
/
v1
/
account
/
balances
Token balances
curl --request GET \
  --url https://api.alpha-labs.trade/api/v1/account/balances \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "balances": [
      {
        "tokenAddress": "<string>",
        "tokenSymbol": "<string>",
        "tokenName": "<string>",
        "balance": "4.27",
        "value": "12.50",
        "price": "12.50",
        "chainId": "<string>",
        "decimals": 123,
        "currency": "usd",
        "lastUpdated": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Send your API key as Authorization: Bearer murmo_.... Keys are created in the Murmo app. Header-only — keys are never read from the query string. Valid for the REST API under /api/v1 only (not the GraphQL endpoint).

Response

Balances.

data
object