Confirm Launch

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

Use this endpoint to confirm and save the new launch. Once unsigned psbt is available from get-launch-psbt endpoint, the psbt needs to be signed by the PSBT needs to be signed by the wallet that owns all the pre inscribed inscriptions. The signed psbt needs to be submitted to /save-launch endpoint for the launch to be confirmed.

POST /launchpad/save-launch

POST https://api.ordinalsbot.com/launchpad/save-launch

API Key is required in the header:

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

Example Request Body, this will confirm and save a new launch:

{
  "launchpadId": "65a123b789cdef0123456789",
  "updateLaunchData": {
    "signedListingPSBT": "cHNidP8BAHECAAAAAfPQ0OTWpSxwRJK..."
  }
}

Request Body

NameTypeDescription

String

launchpad id returned by the create launch api

String

The signed PSBT

{
  "message": "Launchpad listing is updated successfully"
}

Last updated