Skip to main content
GET
/
v3
/
launchpads
Launchpads list with metrics
curl --request GET \
  --url https://api.cryptorank.io/v3/launchpads \
  --header 'X-Api-Key: <api-key>'
[
  {
    "id": 1,
    "rank": 12,
    "name": "Binance Launchpad",
    "logoUrl": "https://images.cryptorank.io/ido-platforms/150x150.binance.png",
    "salesCount": 42,
    "latestSaleDate": "2026-04-12T00:00:00.000Z",
    "popularCategories": [
      "DeFi",
      "GameFi",
      "Infrastructure"
    ],
    "totalRaised": "12500000",
    "blockchains": [
      "Ethereum",
      "BNB Chain"
    ],
    "currentRoi": 1.84,
    "athRoi": 7.32,
    "nativeTokenMarketCap": "95000000000",
    "nativeTokenVolume24h": "1800000000"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.cryptorank.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Api-Key
string
header
required

Query Parameters

offset
number
default:0
Required range: 0 <= x <= 50000
limit
number
default:100
Required range: 1 <= x <= 1000
sortBy
enum<string>
default:id
Available options:
id,
roi,
athRoi,
totalRaised,
salesCount
sortOrder
enum<string>
default:desc
Available options:
asc,
desc

Response

200 - application/json
id
number
required
Example:

1

rank
number | null
required

1Y rank. Null when not ranked for the last year.

Example:

12

name
string
required
Example:

"Binance Launchpad"

logoUrl
string | null
required

Launchpad logo URL (150x150). Null when unavailable.

Example:

"https://images.cryptorank.io/ido-platforms/150x150.binance.png"

salesCount
number
required

Number of completed token sales in the last year.

Example:

42

latestSaleDate
string | null
required

End date of the most recent completed sale (ISO 8601 UTC). Null when none.

Example:

"2026-04-12T00:00:00.000Z"

Top up to 5 category names across completed sales in the last year.

Example:
["DeFi", "GameFi", "Infrastructure"]
totalRaised
string | null
required

Total raised in USD over completed sales in the last year. Null when none.

Example:

"12500000"

blockchains
string[]
required

Blockchains the launchpad operates on.

Example:
["Ethereum", "BNB Chain"]
currentRoi
number | null
required

Average current ROI across completed sales in the last year (price / sale price). Null when not computable.

Example:

1.84

athRoi
number | null
required

Average ATH ROI across completed sales in the last year (ATH price / sale price). Null when not computable.

Example:

7.32

nativeTokenMarketCap
string | null
required

Native token market cap in USD. Null when no native token or unpriced.

Example:

"95000000000"

nativeTokenVolume24h
string | null
required

Native token 24-hour USD volume. Null when no native token or unpriced.

Example:

"1800000000"