GET /testnet/{address}
GET

/v1/testnet/{address}

Live Testnet XRP balance, reserve, sequence and settings of an account, straight from the network

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/testnet/rDKvxFRPLAiu1djgz5dQWCWPmax1pBp8Hj
Path parameterValueDescription
addressAn XRPL account, its r-address
curl 'https://api.xrpl.to/v1/testnet/rDKvxFRPLAiu1djgz5dQWCWPmax1pBp8Hj'

Response

200Example response790 ms · just now · 0.5 KB · 22 lines
https://api.xrpl.to/v1/testnet/rDKvxFRPLAiu1djgz5dQWCWPmax1pBp8Hj
{
  "address": "rDKvxFRPLAiu1djgz5dQWCWPmax1pBp8Hj",
  "activated": true,
  "balance": "355203172",
  "balanceXRP": "355.203172",
  "reserve": {
    "baseReserveXRP": 1,
    "ownerReserveXRP": 0.2,
    "ownerCount": 17,
    "totalReserveXRP": "4.4",
    "totalReserveDrops": "4400000"
  },
  "available": {
    "drops": "350803172",
    "xrp": "350.803172"
  },
  "sequence": 20862446,
  "domain": "trader-1.example",
  "domainHex": "7472616465722D312E6578616D706C65",
  "flags": 0,
  "ledgerIndex": 20930517
}
Shapeas documented
{
  address,
  activated,
  balance (drops),
  balanceXRP,
  reserve: {
    baseReserveXRP,
    ownerReserveXRP,
    ownerCount,
    totalReserveXRP
  },
  available: { drops, xrp },
  sequence,
  domain (the Domain field as text),
  domainHex,
  flags,
  ledgerIndex
}

What it does

Live Testnet XRP balance, reserve, sequence and settings of an account, straight from the network

Start at GET /v1/testnet/fixtures: it names live accounts, a busy token, an NFT with offers and one of every ledger object that xrpl.to keeps alive on Testnet, plus a real transaction of every type. Testnet resets without warning; the data is rebuilt from the chain within minutes, and only objects touched since count. Open the Testnet sandbox →
OpenAPI