GET /account/trustline/{account}/{issuer}/{currency}
GET

/v1/account/trustline/{account}/{issuer}/{currency}

Single trustline lookup

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/account/trustline/rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE/rMxCKbEDwqr76QuheSUMdEGf4B9xJ8m5De/524C555344000000000000000000000000000000
Path parameterValueDescription
accountAn XRPL account, its r-address
issuerThe issuer's r-address
currencyThe currency code, 3 characters or 40-character hex
curl 'https://api.xrpl.to/v1/account/trustline/rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE/rMxCKbEDwqr76QuheSUMdEGf4B9xJ8m5De/524C555344000000000000000000000000000000'

Response

200Example response1 ms · just now · 0.2 KB · 10 lines
https://api.xrpl.to/v1/account/trustline/rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE/rMxCKbEDwqr76QuheSUMdEGf4B9xJ8m5De/524C555344000000000000000000000000000000
{
  "success": true,
  "took": 1,
  "account": "rJqiMb94hyz41SBTNr2AyPNW8AzELa8nE",
  "issuer": "rMxCKbEDwqr76QuheSUMdEGf4B9xJ8m5De",
  "currency": "524C555344000000000000000000000000000000",
  "hasTrustline": false,
  "balance": 0,
  "limit": null
}

What it does

Single trustline lookup

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