Account
Token balances
Cash and token balances held in the main wallet.
GET
Token balances
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Cash and token balances held in the main wallet.
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"
}
]
}
}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).
Balances.
Show child attributes
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"
}
]
}
}