GET /testnet/nft/{id}/offers
GET

/v1/testnet/nft/{id}/offers

The offers standing on a Testnet NFT, split by side

AuthNone — works without a key

Request

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

Response

200Example response2 ms · just now · 0.6 KB · 23 lines
https://api.xrpl.to/v1/testnet/nft/000800008D636973A12A3F882DB44909B25D79598201ADBF12F03425013E526E/offers
{
  "success": true,
  "took": 1,
  "count": 1,
  "sell": [
    {
      "_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
    }
  ],
  "buy": []
}
Shapeas documented
{ sell[], buy[], count }

What it does

The offers standing on a Testnet NFT, split by side

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