LogoLogo
Back to AppHelp Center
  • Getting Started
    • Welcome
  • OrdinalsBot API
    • Overview
    • Libraries
    • Template-App
    • Signet
    • Testnet
    • Fractal
    • 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
    • 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. Runes
  2. Direct Mint

2. Direct Rune Mint Process PSBT

Previous1. Generate Direct Mint PSBTNextLaunchpad

Last updated 3 days ago

Direct Mint send PSBT

Send the signed PSBT and orderID obtained in the to the following endpoint to

POST https://api.ordinalsbot.com/runes/direct-mint-psbt

Request Body

Name
Type
Description

orderId*

String

Order id obtained in the previous step

psbt*

String

base64 string containing a fully signed PSBT

Example request body:

{
    "orderId": "048534a2-f0b6-4e50-9ab8-6ce8784de098",
    "psbt": "cHNid..."
}

Example response:

{
    "createdAt": 1747731071531,
    "feeRate": 3,
    "id": "2bc3e26d-bcb3-498e-b3f3-eb0c15004ca7",
    "mintCount": 2,
    "minterAddress": "tb1q...",
    "orderType": "rune-direct-mint",
    "runeName": "RUNENAME",
    "sendAddress": "tb1pg...",
    "state": "completed",
    "status": "ok",
    "txs": [
        "e40b6087ad5c5d165cd22...",
        "9e065ab4a2e210dcbf779..."
    ],
    "updatedAt": 1747731125806
}
{
    status: 'error',
    error: 'error reason'
}

previous step