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

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 returns launchpad information

GET /launchpad/get-launch-stats

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

API Key is required in the header:

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

// Returns Launchpad information and stats
{
    "_id": "671897436f9ae1623cad4d29",
    "sellerPaymentAddress": "2N6ZePLQrKtix9bJBfznsykxKX1XtirnbKL",
    "sellerOrdinalPublicKey": "e581edf3a948470930171a3e676490a8f7953a3698044c14b4d75ffeabc88a26",
    "marketPlaceId": "65e6f865fbdbaaa3d7f1bc9f",
    "metaData": "{\"title\":\"test 01\",\"description\":\"test launchpad 01\"}",
    "createdAt": "2024-10-23T06:27:15.869Z",
    "updatedAt": "2024-10-23T06:27:34.189Z",
    "phases": [
        {
            "_id": "671897436f9ae1623cad4d2c",
            "ordinals": 5,
            "available": 4,
            "isPublic": false,
            "price": 1500,
            "startDate": 1729621800,
            "endDate": 1729708200
        },
        {
            "_id": "671897476f9ae1623cad4d42",
            "ordinals": 5,
            "available": 5,
            "isPublic": false,
            "price": 1200,
            "startDate": 1729708200,
            "endDate": 1729794600
        }
    ],
    "totalOrdinals": 10,
    "available": 9
}
{
    status: 'error',
    error: 'error reason'
}
PreviousConfirm buy offerNextFind Special Ranges

Last updated 7 months ago