GET /nft/analytics/rotations/{cid}
GET

/v1/nft/analytics/rotations/{cid}

NFT collection rotations by collection id

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/nft/analytics/rotations/fuzzybears
Path parameterValueDescription
cidA collection slug, or its identity as issuer:taxon
Query parameterValueDescription
period24h|7d|30d (default 24h)
minXrpnumber (default 1)
curl 'https://api.xrpl.to/v1/nft/analytics/rotations/fuzzybears'

Response

200Example response4 ms · just now · 0.3 KB · 18 lines
https://api.xrpl.to/v1/nft/analytics/rotations/fuzzybears
{
  "success": true,
  "period": "24h",
  "cid": "fuzzybears",
  "sellers": 0,
  "buyers": 0,
  "sellVolume": 0,
  "buyVolume": 0,
  "rotatedTo": [],
  "rotatedFrom": [],
  "rotatedToTotal": 0,
  "rotatedFromTotal": 0,
  "rotatedToCollections": 0,
  "rotatedFromCollections": 0,
  "freshCapital": [],
  "freshCapitalTotal": 0,
  "freshCapitalCount": 0
}

What it does

NFT collection rotations by collection id

A collection is its slug, or its on-chain identity as issuer:taxon. Each NFT in it comes back with its NFTokenID, the id every NFT endpoint takes. Go to NFT →
OpenAPI