Create buy offer
An API Key is required to interact with Launchpad APIs. Please contact us to get an API Key and get started.
This endpoint creates transaction to purchase an inscription from an active phase of a launchpad. Platform Cost: A platform fee is applied only when an ordinal is sold. It is not charged for listing an ordinal. The current fee is 1% of sale amount charged to the seller. A marketplace can also configure marketplace fee and/or launchpad fee for each sale, these are 0% by default.
Upon usage, it generates a Partially Signed Bitcoin Transaction (PSBT) encoded in base64. This PSBT must be signed by the payment wallet. 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.
POST
/launchpad/create-launch
POST
/launchpad/create-launchPOST
https://api.ordinalsbot.com/launchpad/create-launch-offer
API Key is required in the header:
headers: { 'x-api-key': '<YOUR_API_KEY>', ...otherHeaders }
Example Request Body:
Request Body
Name | Type | Description |
---|---|---|
launchpadId | String | Launchpad id |
launchpadPhaseId | String | The phaseid of the active phase from which the buyer is buying an inscription |
buyerOrdinalAddress | String | The ordinal address of the buyer, this address should also be in the allowlist of the active phase |
buyerPaymentAddress | String | The payment wallet address of the buyer |
buyerPaymentPublicKey | String | The Payment public key of the buyer payment wallet address |
Last updated