GET /testnet/nft/{id}
GET

/v1/testnet/nft/{id}

A Testnet NFT with the offers standing on it

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/testnet/nft/000800008D636973A12A3F882DB44909B25D79598201ADBF12F03425013E526E
Path parameterValueDescription
idA token id: its md5, slug or issuer_currency
curl 'https://api.xrpl.to/v1/testnet/nft/000800008D636973A12A3F882DB44909B25D79598201ADBF12F03425013E526E'

Response

200Example response3 ms · just now · 1.2 KB · 38 lines
https://api.xrpl.to/v1/testnet/nft/000800008D636973A12A3F882DB44909B25D79598201ADBF12F03425013E526E
{
  "success": true,
  "took": 1,
  "nft": {
    "_id": "000800008D636973A12A3F882DB44909B25D79598201ADBF12F03425013E526E",
    "URI": "697066733A2F2F746573746E65742D626C75652D63686970732F3430",
    "burned": false,
    "cid": "rDtb4JAujk7zJPFVtGaJQpbc7HzZG5frbs_7724",
    "flags": 8,
    "issuer": "rDtb4JAujk7zJPFVtGaJQpbc7HzZG5frbs",
    "mintLedger": 20929307,
    "mintTx": "52165CAE5D62B243A5A62D258335BD45CBFF5BDA523ED721535A669FBF7B7756",
    "minted": 1789971670000,
    "minter": "rDtb4JAujk7zJPFVtGaJQpbc7HzZG5frbs",
    "owner": "rDtb4JAujk7zJPFVtGaJQpbc7HzZG5frbs",
    "serial": 20861550,
    "taxon": 7724,
    "time": 1789971670000,
    "transferFee": 0
  },
  "offers": [
    {
      "_id": "415D09111CA562109B279A433C6BDFA60B504426B0D2358ACD276C442E3EE0A7",
      "NFTokenID": "000800008D636973A12A3F882DB44909B25D79598201ADBF12F03425013E526E",
      "amount": {
        "currency": "XRP",
        "issuer": "XRPL",
        "value": 3.853415
      },
      "cid": "rDtb4JAujk7zJPFVtGaJQpbc7HzZG5frbs_7724",
      "hash": "2EBB59F4A1D03781A525E9B92571B82424B2B2E5EC42EC601532A3880C3A67DC",
      "isSell": true,
      "ledger": 20930137,
      "owner": "rDtb4JAujk7zJPFVtGaJQpbc7HzZG5frbs",
      "time": 1789974520000
    }
  ]
}
Shapeas documented
{ nft, offers[] }

What it does

A Testnet NFT with the offers standing on it

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