GET /boost/nft/quote/{slug}
GET

/v1/boost/nft/quote/{slug}

Quote price for boosting an NFT collection (slug also accepts "<issuer>:<taxon>")

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/boost/nft/quote/fuzzybears
Path parameterValueDescription
slugA collection slug, or its identity as issuer:taxon
curl 'https://api.xrpl.to/v1/boost/nft/quote/fuzzybears'

Response

200Example response29 ms · just now · 1.0 KB · 49 lines
https://api.xrpl.to/v1/boost/nft/quote/fuzzybears
{
  "collection": {
    "slug": "fuzzybears",
    "name": "Fuzzybears",
    "collectionId": "33920d4b2f0346fba52ece9f05c54f5f"
  },
  "current": null,
  "auction": {
    "slots": 10,
    "filled": 0,
    "termHours": 12,
    "protectHours": 2,
    "featuredSlots": 5,
    "floorUsd": 5,
    "outbidPct": 0.1,
    "minBidUsd": 5,
    "minBidXrp": 3.48,
    "opensAt": null,
    "board": []
  },
  "tiers": [
    {
      "id": "rail",
      "name": "Rail",
      "priceUsd": 5,
      "blurb": "Sponsored rail on the token list for 12h",
      "priceXrp": 3.48
    },
    {
      "id": "featured",
      "name": "Featured",
      "priceUsd": 5,
      "blurb": "Top 5 — also on the homepage rail",
      "priceXrp": 3.48
    },
    {
      "id": "top",
      "name": "Top spot",
      "priceUsd": 5,
      "blurb": "Rank 1 — first position on every rail",
      "priceXrp": 3.48
    }
  ],
  "xrpUsd": 1.4384,
  "pricing": {
    "feeCollector": "rBMrq2GN521SbDyRbnwJc3nVBwxnXRpLTo",
    "network": "mainnet"
  }
}

What it does

Quote price for boosting an NFT collection (slug also accepts "<issuer>:<taxon>")

How the slot auction works is in the Boost guide. Read the guide →
OpenAPI