GET /boost/quote/{md5}
GET

/v1/boost/quote/{md5}

Get quote for boosting a token

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/boost/quote/0dd550278b74cb6690fdae351e8e0df3
Path parameterValueDescription
md5The token's md5 (md5 of issuer_currency)
Query parameterValueDescription
rankint
curl 'https://api.xrpl.to/v1/boost/quote/0dd550278b74cb6690fdae351e8e0df3'

Response

200Example response93 ms · just now · 1.0 KB · 49 lines
https://api.xrpl.to/v1/boost/quote/0dd550278b74cb6690fdae351e8e0df3
{
  "token": {
    "md5": "0dd550278b74cb6690fdae351e8e0df3",
    "name": "RLUSD",
    "slug": "rMxCKbEDwqr76QuheSUMdEGf4B9xJ8m5De-524C555344000000000000000000000000000000"
  },
  "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.4396499999999999,
  "pricing": {
    "feeCollector": "rBMrq2GN521SbDyRbnwJc3nVBwxnXRpLTo",
    "network": "mainnet"
  }
}

What it does

Get quote for boosting a token

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