Account
Account summary
Total wallet value, cash (USDC) balance, and the deposit object an agent uses to fund itself (send USDC to that mint + address on Solana).
GET
Account summary
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Total wallet value, cash (USDC) balance, and the deposit object an agent uses to fund itself (send USDC to that mint + address on Solana).
curl --request GET \
--url https://api.alpha-labs.trade/api/v1/account \
--header 'Authorization: Bearer <token>'{
"data": {
"totalValueUsd": "12.50",
"cashBalanceUsd": "12.50",
"deposit": {
"walletAddress": "<string>",
"token": "USDC",
"tokenMint": "<string>",
"chain": "solana"
}
}
}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).
Account summary.
Show child attributes
curl --request GET \
--url https://api.alpha-labs.trade/api/v1/account \
--header 'Authorization: Bearer <token>'{
"data": {
"totalValueUsd": "12.50",
"cashBalanceUsd": "12.50",
"deposit": {
"walletAddress": "<string>",
"token": "USDC",
"tokenMint": "<string>",
"chain": "solana"
}
}
}