Account
Spot holdings
Token holdings (spot positions) in the main wallet, with a nextCursor for pagination when present.
GET
Spot holdings
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Token holdings (spot positions) in the main wallet, with a nextCursor for pagination when present.
curl --request GET \
--url https://api.alpha-labs.trade/api/v1/account/positions \
--header 'Authorization: Bearer <token>'{
"data": {
"positions": [
{
"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"
}
],
"nextCursor": "<string>"
}
}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).
Holdings.
Show child attributes
curl --request GET \
--url https://api.alpha-labs.trade/api/v1/account/positions \
--header 'Authorization: Bearer <token>'{
"data": {
"positions": [
{
"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"
}
],
"nextCursor": "<string>"
}
}