Skip to main content
GET
/
api
/
v1
/
account
Account summary
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"
    }
  }
}

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

Account summary.

data
object