GET /testnet/nft/collections
GET

/v1/testnet/nft/collections

Testnet NFT collections, by issuer and taxon. volume/sales are all-time XRP sales; vol24h/sales24h the last 24 h, recounted every minute

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/testnet/nft/collections?limit=5
Query parameterValueDescription
sortvolume | items | sales | time | vol24h | sales24h (default volume)
limit1-100
pagefrom 1
curl 'https://api.xrpl.to/v1/testnet/nft/collections?limit=5'

Response

200Example response2 ms · just now · 2.1 KB · 91 lines
https://api.xrpl.to/v1/testnet/nft/collections?limit=5
{
  "success": true,
  "took": 1,
  "sortBy": "volume",
  "collections": [
    {
      "_id": "rDtb4JAujk7zJPFVtGaJQpbc7HzZG5frbs_7724",
      "burned": 0,
      "firstSeen": 1789944382000,
      "floor": 1.649632,
      "issuer": "rDtb4JAujk7zJPFVtGaJQpbc7HzZG5frbs",
      "items": 30,
      "listed": 30,
      "owners": 22,
      "sales": 242,
      "taxon": 7724,
      "time": 1789975890000,
      "volume": 1286.646238,
      "sales24h": 242,
      "vol24h": 1286.646238
    },
    {
      "_id": "rfJxoi2tAWjy8dgHgJnk7E6tkdxzNyakYV_6471",
      "burned": 0,
      "firstSeen": 1789968941000,
      "floor": 6.659492,
      "issuer": "rfJxoi2tAWjy8dgHgJnk7E6tkdxzNyakYV",
      "items": 3,
      "listed": 2,
      "owners": 3,
      "sales": 4,
      "sales24h": 4,
      "taxon": 6471,
      "time": 1789975002000,
      "vol24h": 21.292222,
      "volume": 21.292222
    },
    {
      "_id": "raVSJpY4JHsMetgciXgo4my6PA4qB76nTQ_9449",
      "burned": 0,
      "firstSeen": 1789968911000,
      "floor": null,
      "issuer": "raVSJpY4JHsMetgciXgo4my6PA4qB76nTQ",
      "items": 3,
      "listed": 0,
      "owners": 2,
      "sales": 1,
      "sales24h": 1,
      "taxon": 9449,
      "time": 1789971740000,
      "vol24h": 6.316517,
      "volume": 6.316517
    },
    {
      "_id": "rHj9jbrrtvEAdEBQo95KFhFf8YwtWBeUpR_1654",
      "burned": 0,
      "firstSeen": 1789959790000,
      "floor": null,
      "issuer": "rHj9jbrrtvEAdEBQo95KFhFf8YwtWBeUpR",
      "items": 1,
      "listed": 1,
      "owners": 1,
      "sales": 1,
      "taxon": 1654,
      "time": 1789959861000,
      "volume": 3.12995,
      "sales24h": 1,
      "vol24h": 3.12995
    },
    {
      "_id": "r4iJUfhM9mGsHWFusVoeRvxH8tvZKRJ25i_5844",
      "burned": 0,
      "firstSeen": 1789959832000,
      "floor": null,
      "issuer": "r4iJUfhM9mGsHWFusVoeRvxH8tvZKRJ25i",
      "items": 1,
      "listed": 0,
      "owners": 1,
      "sales": 1,
      "taxon": 5844,
      "time": 1789959852000,
      "volume": 3,
      "sales24h": 1,
      "vol24h": 3
    }
  ],
  "count": 5,
  "total": 57,
  "page": 1,
  "limit": 5
}
Shapeas documented
{
  collections: [
    {
      _id,
      issuer,
      taxon,
      items,
      burned,
      owners,
      listed,
      floor,
      sales,
      volume,
      vol24h,
      sales24h,
      time
    }
  ],
  count,
  total,
  sortBy
}

What it does

Testnet NFT collections, by issuer and taxon. volume/sales are all-time XRP sales; vol24h/sales24h the last 24 h, recounted every minute

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