GET /testnet/tokens/{md5}
GET

/v1/testnet/tokens/{md5}

A Testnet token with its AMM pool

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/testnet/tokens/12989284778980e987410b6e10cf7f9c
Path parameterValueDescription
md5The token's md5 (md5 of issuer_currency)
curl 'https://api.xrpl.to/v1/testnet/tokens/12989284778980e987410b6e10cf7f9c'

Response

200Example response2 ms · just now · 1.0 KB · 37 lines
https://api.xrpl.to/v1/testnet/tokens/12989284778980e987410b6e10cf7f9c
{
  "success": true,
  "took": 1,
  "token": {
    "_id": "12989284778980e987410b6e10cf7f9c",
    "currency": "524C555344000000000000000000000000000000",
    "exch": 0.6956612681407898,
    "firstSeen": 1789944340000,
    "firstTx": "2BADBABD9B15ACE6D1CE80BD1C451CEF6A7DF2C05BBA12C5FBD1E17BD4678DAA",
    "holders": 119,
    "issuer": "rNuFETH1NSTxZQYmDvPWdMF8dD3FbTzbmP",
    "name": "RLUSD",
    "supply": 116308.90695298817,
    "trades24h": 1702,
    "trustlines": 131,
    "vol24h": 125768.030359,
    "amm": "rEc17YM54zCGkzHfnNGtrp1dR31ACUYhep",
    "lastTrade": 1789975862000,
    "spot": 0.6960572959636605,
    "time": 1789975862000,
    "tvl": 38721.10668
  },
  "pool": {
    "_id": "rEc17YM54zCGkzHfnNGtrp1dR31ACUYhep",
    "deleted": false,
    "firstSeen": 1789944340000,
    "ledger": 20930535,
    "spot": 0.6960572959636605,
    "time": 1789975862000,
    "token": {
      "currency": "524C555344000000000000000000000000000000",
      "issuer": "rNuFETH1NSTxZQYmDvPWdMF8dD3FbTzbmP",
      "value": 27814.59723541317
    },
    "xrp": 19360.55334
  }
}
Shapeas documented
{ token, pool }

What it does

A Testnet token with its AMM pool

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