GET /testnet/nft/history
GET

/v1/testnet/nft/history

Testnet NFT events, newest first

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/testnet/nft/history?nft=000800008D636973A12A3F882DB44909B25D79598201ADBF12F03425013E526E&limit=5
Query parameterValueDescription
collectionissuer:taxon
nftNFTokenID
accountthe sending account (one of the three is required)
typeMINT | BURN | LIST | BID | CANCEL | SALE | TRANSFER | MODIFY
limit1-200
pagefrom 1
curl 'https://api.xrpl.to/v1/testnet/nft/history?nft=000800008D636973A12A3F882DB44909B25D79598201ADBF12F03425013E526E&limit=5'

Response

200Example response6 ms · just now · 1.4 KB · 39 lines
https://api.xrpl.to/v1/testnet/nft/history?nft=000800008D636973A12A3F882DB44909B25D79598201ADBF12F03425013E526E&limit=5
{
  "success": true,
  "took": 5,
  "type": null,
  "history": [
    {
      "_id": "2EBB59F4A1D03781A525E9B92571B82424B2B2E5EC42EC601532A3880C3A67DC_LIST_415D09111CA562109B279A433C6BDFA60B504426B0D2358ACD276C442E3EE0A7",
      "type": "LIST",
      "hash": "2EBB59F4A1D03781A525E9B92571B82424B2B2E5EC42EC601532A3880C3A67DC",
      "ledger": 20930137,
      "time": 1789974520000,
      "account": "rDtb4JAujk7zJPFVtGaJQpbc7HzZG5frbs",
      "NFTokenID": "000800008D636973A12A3F882DB44909B25D79598201ADBF12F03425013E526E",
      "cid": "rDtb4JAujk7zJPFVtGaJQpbc7HzZG5frbs_7724",
      "offer": "415D09111CA562109B279A433C6BDFA60B504426B0D2358ACD276C442E3EE0A7",
      "amount": {
        "currency": "XRP",
        "issuer": "XRPL",
        "value": 3.853415
      },
      "owner": "rDtb4JAujk7zJPFVtGaJQpbc7HzZG5frbs"
    },
    {
      "_id": "52165CAE5D62B243A5A62D258335BD45CBFF5BDA523ED721535A669FBF7B7756_MINT",
      "type": "MINT",
      "hash": "52165CAE5D62B243A5A62D258335BD45CBFF5BDA523ED721535A669FBF7B7756",
      "ledger": 20929307,
      "time": 1789971670000,
      "account": "rDtb4JAujk7zJPFVtGaJQpbc7HzZG5frbs",
      "NFTokenID": "000800008D636973A12A3F882DB44909B25D79598201ADBF12F03425013E526E",
      "cid": "rDtb4JAujk7zJPFVtGaJQpbc7HzZG5frbs_7724",
      "owner": "rDtb4JAujk7zJPFVtGaJQpbc7HzZG5frbs"
    }
  ],
  "count": 2,
  "total": 2,
  "page": 1,
  "limit": 5
}
Shapeas documented
{
  history: [
    {
      type,
      NFTokenID,
      cid,
      account,
      buyer,
      seller,
      amount,
      broker,
      hash,
      ledger,
      time
    }
  ],
  count,
  total
}

What it does

Testnet NFT events, newest first

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