LAUNCHPADS API

Track token launches in real time across three curated lists. Each endpoint costs 0.0004 USD per settled request.

GET /launchpads/new

Attribute
Value

Method

GET

Description

Returns launchpad tokens that are not completed and not migrated, sorted by creation date (newest first).

Settlements

/, /solana, /base

Price

0.0004 USD

Response snapshot

{
  "success": true,
  "data": {
    "filterTokens": {
      "results": [
        {
          "createdAt": 1736882400,
          "marketCap": 1250000,
          "priceUSD": 0.035,
          "token": {
            "name": "Nova Launch",
            "symbol": "NOVA",
            "address": "0x1234...",
            "networkId": 8453,
            "launchpad": {
              "graduationPercent": 42.3,
              "launchpadName": "Solstarter",
              "launchpadProtocol": "Solana",
              "migrated": false,
              "completed": false,
              "completedAt": null
            }
          }
        }
      ]
    }
  },
  "timestamp": "2025-01-15T13:05:00.250Z"
}

GET /launchpads/completing

Attribute
Value

Method

GET

Description

Returns tokens between 80 and 100 percent graduation that are not yet migrated or completed, sorted by graduation percent descending.

Settlements

/, /solana, /base

Price

0.0004 USD

Response snapshot

{
  "success": true,
  "data": {
    "filterTokens": {
      "results": [
        {
          "createdAt": 1736203200,
          "marketCap": 2100000,
          "priceUSD": 0.12,
          "token": {
            "name": "OrbitX",
            "symbol": "ORBX",
            "address": "0x5678...",
            "networkId": 42161,
            "launchpad": {
              "graduationPercent": 88.7,
              "launchpadName": "LaunchVerse",
              "launchpadProtocol": "Arbitrum",
              "migrated": false,
              "completed": false,
              "completedAt": null
            }
          }
        }
      ]
    }
  },
  "timestamp": "2025-01-15T13:05:05.000Z"
}

GET /launchpads/completed

Attribute
Value

Method

GET

Description

Returns tokens that have migrated and reached 100 percent graduation, sorted by migration date (most recent first).

Settlements

/, /solana, /base

Price

0.0004 USD

Response snapshot

{
  "success": true,
  "data": {
    "filterTokens": {
      "results": [
        {
          "createdAt": 1735408800,
          "marketCap": 4500000,
          "priceUSD": 0.48,
          "token": {
            "name": "Pioneer",
            "symbol": "PNR",
            "address": "0x9abc...",
            "networkId": 10,
            "launchpad": {
              "graduationPercent": 100,
              "launchpadName": "BaseStarter",
              "launchpadProtocol": "Base",
              "migrated": true,
              "completed": true,
              "completedAt": "2025-01-10T16:30:00.000Z"
            }
          }
        }
      ]
    }
  },
  "timestamp": "2025-01-15T13:05:10.000Z"
}

Usage notes

  • The three endpoints share the same response structure. Use the launchpad object to display progress, and marketCap/priceUSD fields for ranking.

  • Results may be empty if no tokens match the criteria at the time of the request.

  • Combine with Tokens API for additional metadata (logo URLs, social links, exchange listings).

Last updated