2. Direct Rune Mint Process PSBT
Direct Mint send PSBT
Send the signed PSBT and orderID obtained in the previous step 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
}
Last updated