Retrieve Launch PSBT

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 retrieve the PSBT. If PSBT is not ready a pending status will be returned. When the psbt is ready, the psbt to be signed is returned along with a pending confirmation status.

The PSBT needs to be signed by the wallet that owns all the pre inscribed inscriptions.

POST /launchpad/get-launch-psbt/:launchpadId

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

API Key is required in the header:

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

// Response has the unsigned psbt and the status
// status is pending while the psbt is being created
// Once psbt is ready status will change to pending confirmation
 
{
  "status": "pending_buyer_confirmation",
  "psbt": "cHNidP8BAHECAAAAAfPQ0OTWpSxwRJK..."
}

Last updated