GET /account/checks/{account}
GET

/v1/account/checks/{account}

Check ledger objects with live funding status for cashable checks

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/account/checks/rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE
Path parameterValueDescription
accountAn XRPL account, its r-address
curl 'https://api.xrpl.to/v1/account/checks/rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE'

Response

200Example response14 ms · just now · 0.8 KB · 26 lines
https://api.xrpl.to/v1/account/checks/rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE
{
  "success": true,
  "took": 12,
  "account": "rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE",
  "objects": [
    {
      "Account": "rMZ9hkrkiNMpZjh9hUb9JkEc8q13tS1uQQ",
      "Destination": "rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE",
      "DestinationNode": "0",
      "Flags": 0,
      "LedgerEntryType": "Check",
      "OwnerNode": "1",
      "PreviousTxnID": "5A4958E7879BA7E13825CCC690195EAC5EE3C309FD7E3B127EDC3D14C594F7BF",
      "PreviousTxnLgrSeq": 104786496,
      "SendMax": {
        "currency": "58474F2100000000000000000000000000000000",
        "issuer": "rnucXjMr92b229V2KHgjG6V1Hz3JjsgqQN",
        "value": "0.00000001"
      },
      "Sequence": 96761419,
      "index": "77117C5F1DEDEF16302665E894F2AD10AD6ADB6E964A0F2CDC7739D5DAA00779",
      "_senderBalance": 1e-8,
      "_funded": true
    }
  ]
}
Shapeas documented
{
  success,
  took,
  account,
  objects[],
  truncated?
}

What it does

Check ledger objects with live funding status for cashable checks

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