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 completes the purchase of an inscription.

This requires the signed psbt from /create-launch-offer end point. Which is a psbt signed by the buyer and base64 encoded. This returns a transaction id for the ordinal sale transaction. The PSBT will only be created and returned for an active launchpad and only if the ordinal address of the buyer has an available allocation to buy in the currently active phase.

GET /launchpad/get-launch-stats

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

API Key is required in the header:

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

// Returns transaction id

{
  "_id": "65a123b789cdef0123456789",
  "sellerPaymentAddress": "3NyCZefqHSYiQRQdqaxYkaHnuFED1vyc4q",
  "sellerOrdinalPublicKey": "4fa4865e593f24fbf0852ca94039e68cdaae783098918ed6b0118fad4e476541",
  "marketPlaceId": "65a123b789cdef0123456788",
  "metaData": "{\"title\":\"Amazing Collection\",\"description\":\"Limited edition digital art pieces\",\"imageURL\":\"https://example.com/collection-image.jpg\"}",
  "createdAt": "2024-01-15T10:30:00Z",
  "updatedAt": "2024-01-16T14:45:00Z",
  "phases": [
    {
      "_id": "65a123b789cdef0123456790",
      "ordinals": 15,
      "available": 13,
      "allowList": {
        "bc1pdtkxdpunmu9rfj7tcglt4kcg2qya8w4y4cxhqcy9fscqnwdk8c7q6ec2w3": {
          "allocation": "5"
        },
        "bc1pfy7uyj9ae9sfz3h0rqcgqn0vnq4tgh50yxrat7lmd46kxwqmcqxsvvm02l": {
          "allocation": "4"
        }
      },
      "isPublic": false,
      "price": 6000,
      "startDate": "2024-01-15T00:00:00Z",
      "endDate": "2024-01-22T00:00:00Z"
    }
  ],
  "totalOrdinals": 15,
  "available": 13
}

Last updated