GET /account/balance/{account}
GET

/v1/account/balance/{account}

XRP balance with reserves

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/account/balance/rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE
Path parameterValueDescription
accountAn XRPL account, its r-address
Query parameterValueDescription
simplebool - minimal response
rankbool - include rank (slow)
curl 'https://api.xrpl.to/v1/account/balance/rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE'

Response

200Example response2 ms · just now · 0.7 KB · 22 lines
https://api.xrpl.to/v1/account/balance/rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE
{
  "success": true,
  "took": 1,
  "account": "rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE",
  "balance": 167380145.229464,
  "total": 167380146.829464,
  "balanceDrops": 167380146829464,
  "spendableDrops": 167380145229464,
  "reserve": 1.6,
  "reserveDrops": 1600000,
  "ownerCount": 3,
  "sequence": 67314589,
  "flags": 0,
  "index": "FA35F8F693F566F164D678CBD24B21AA9A5FC5F0DD8D676A138404B8CBFE3132",
  "previousTxnID": "3EA4FAE2BE3D2FD96D20470535106AFC4CFED0FCD99CECC8359D5F07C8E1870C",
  "previousTxnLgrSeq": 107072724,
  "name": "Ripple",
  "inception": "2021-10-27T20:47:11.000Z",
  "parent": "rsV5XY4tm9dBN8mPX7RPEDuHLaA5fZjFSA",
  "parentTx": "3287AD0A193B6D3F4A46C315263A67F2C7F224534770F19579A85AD7B028DBB2",
  "activationAmount": 100
}
Shapeas documented
{
  balance,
  total,
  balanceDrops,
  spendableDrops,
  ownerCount,
  sequence,
  flags,
  reserve,
  reserveDrops,
  name,
  inception,
  parent,
  rank?
}

What it does

XRP balance with reserves

An account is its r-address, e.g. rN7n3473SaZBCG4dFL83w7a1RXtXtbk2D9.
OpenAPI