For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get Launch Info

An API Key is required to interact with Launchpad APIs. Please contact us to get an API Key and get started.

This endpoint returns launchpad information

GET /launchpad/get-launch-stats

GET https://api.ordinalsbot.com/launchpad/get-launch-stats/:launchpadId

API Key is required in the header:

headers: { 'x-api-key': '<YOUR_API_KEY>', ...otherHeaders }

// Returns Launchpad information and stats
{
    "_id": "671897436f9ae1623cad4d29",
    "sellerPaymentAddress": "2N6ZePLQrKtix9bJBfznsykxKX1XtirnbKL",
    "sellerOrdinalPublicKey": "e581edf3a948470930171a3e676490a8f7953a3698044c14b4d75ffeabc88a26",
    "marketPlaceId": "65e6f865fbdbaaa3d7f1bc9f",
    "metaData": "{\"title\":\"test 01\",\"description\":\"test launchpad 01\"}",
    "createdAt": "2024-10-23T06:27:15.869Z",
    "updatedAt": "2024-10-23T06:27:34.189Z",
    "phases": [
        {
            "_id": "671897436f9ae1623cad4d2c",
            "ordinals": 5,
            "available": 4,
            "isPublic": false,
            "price": 1500,
            "startDate": 1729621800,
            "endDate": 1729708200
        },
        {
            "_id": "671897476f9ae1623cad4d42",
            "ordinals": 5,
            "available": 5,
            "isPublic": false,
            "price": 1200,
            "startDate": 1729708200,
            "endDate": 1729794600
        }
    ],
    "totalOrdinals": 10,
    "available": 9
}

Last updated