LogoLogo
Back to AppHelp Center
  • Getting Started
    • Welcome
  • OrdinalsBot API
    • Overview
    • Libraries
    • Template-App
    • Signet
    • Testnet
    • Getting Prices
      • Getting Prices (Legacy)
    • Create a Direct Inscription Order
    • Create a Managed Inscription Order
    • Get Order Status
    • Create a Collection
    • Create a Collection Order
    • Create Text Inscription Order
    • Search Inscriptions
    • Check Rare Sats Inventory
    • Referral Scheme
    • Transaction Accelerator
    • Burning Assets
    • Webhooks
    • Order States
    • Order Types
  • Runes
    • Etch
    • Mint
    • Direct Mint
      • 1. Generate Direct Mint PSBT
      • 2. Direct Rune Mint Process PSBT
    • Launchpad
      • Create
      • Mint
      • Get Launchpad
    • Airdrop
  • Token Pay
    • What is TokenPay?
    • API Docs
      • API reference
        • Order
        • Create payment psbt
        • Create burn rune psbt
        • Validate burn rune tx
        • Create burn inscription psbt
        • Utils
          • Checktx
          • Submittx
          • Finalize psbt
        • User
          • Withdrawal
          • Order
            • Rune
          • Account
            • Withdraw
            • Balance
      • Specification
  • Marketplace
    • User Guide: Pre-Inscribed Launchpad API
    • API Docs
      • Data API
    • Editions Launchpad
  • Launchpad API
    • Create Marketplace
    • Create a new Launchpad
    • Retrieve Launch PSBT
    • Confirm Launch
    • Check Allocation
    • Check for Padding Outputs
    • Setup Padding Outputs
    • Create buy offer
    • Confirm buy offer
    • Get Launch Info
  • Sat Scanner API
    • Find Special Ranges
    • Find Special Ranges UTXO
    • Supported Satributes
  • Sat Extractor
    • Extract
  • BRC20 / BRC2.0PROG
    • OPI API
    • Bitcoin Remix
  • SNS API
    • SNS API
  • Mempool API
    • Mempool API
  • TAP PROTOCOL
    • Tap Reader API
  • UTXO
    • Split
  • User Guide
    • Inscribe your first Ordinal
    • Receiving Payments
  • Knowledge Base
    • Ordinals
      • What is an Ordinal?
      • Satoshi Rarity
      • What are BRC-20 Tokens?
      • Image Optimisation
      • Pixel Art
    • Bitcoin
      • Unspent Transaction Output (UTXO)
  • Official Links
    • Twitter
    • Discord
Powered by GitBook
On this page
  1. Launchpad API

Setup Padding Outputs

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 create a transaction that will create padding outputs for the buyer.

This returns a PSBT in base64 format which needs to be signed and broadcast by the buyer's payment wallet address.

POST /launchpad/setup-padding-outputs

POST https://api.ordinalsbot.com/launchpad/setup-padding-outputs

API Key is required in the header:

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

Example Request Body, this will create a new launch:

{
  "address": "3NyCZefqHSYiQRQdqaxYkaHnuFED1vyc4q",
  "publicKey": "4fa4865e593f24fbf0852ca94039e68cdaae783098918ed6b0118fad4e476541",
  "feeRateTier": "fastestFee"
}

Request Body

address*

String

Buyer's payment wallet address. The buyer will need to pay the cost of the transaction from UTXOs belonging to this address.

publicKey*

String

Public Key for buyer's payment wallet address.

feeRateTier

String

Transaction fee rate should be one of the following. Defaults to fastestFee if not specified: fastestFee halfHourFee hourFee minimumFee

numOfOutPuts

number

Number of dummy padding outputs to create. This defaults to 3 if not specified

// Response has to be signed the the payment wallet
{
    "buyerInputIndices": [
        0
    ],
    "psbt": "cHNidP1BAP15AQIAAAAE1K5...........", // base64 transaction to be signed
    "psbtHex": "70736..."
}

{
    status: 'error',
    error: 'error reason'
}
PreviousCheck for Padding OutputsNextCreate buy offer

Last updated 7 months ago