LogoLogo
  • Xverse API
  • ▶️Get Started
  • 📚API reference
    • Bitcoin
      • 📦Outputs
      • 📫Address
        • UTXO
        • Balance
        • Transactions
          • Unconfirmed
      • 📝Transactions
        • History
    • 🖼️Ordinals
      • Address
        • 📦UTXO
        • 🖼️Inscriptions
        • 🔳Runes
        • 🪙BRC-20
      • ✍️Inscription Service
        • Estimate
        • Order
          • Execute
    • 🔲Runes
      • Rune balances
      • ⛏️Mint Rune
        • Estimate
        • Order
          • Execute
      • 🚀Etch Rune
        • Estimate
        • Order
          • Execute
      • 🔲Rune Data
    • 🪙BRC-20
      • 🪙BRC-20 balances
      • ⛏️Mint BRC-20
        • Estimate
        • Order
          • Execute
      • 🚀Deploy BRC-20
        • Estimate
        • Order
          • Execute
    • 🔄Swaps
      • 🪙Get destination tokens
      • 🧾Get quotes
      • 🔲Runes Swaps
        • Place order
        • Execute order
      • 📦UTXO
        • Get utxos
        • Place order
        • Execute order
      • 🔴Stacks Swaps
        • Place order
        • Execute order
      • 🔀Crosschain Swaps
        • Place order
  • Specification
Powered by GitBook
On this page
Export as PDF
  1. API reference
  2. Runes
  3. Etch Rune

Order

PreviousEstimateNextExecute
📚
🔲
🚀
  • POST/v1/runes/etch/order
  • GET/v1/runes/etch/order/{orderId}
get
Authorizations
Path parameters
orderIdstringRequired
Responses
200
Default Response
application/json
Responseobject
get
GET /v1/runes/etch/order/{orderId} HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Accept: */*
200

Default Response

{}
post
Authorizations
Body
objectOptional
Responses
200
Default Response
application/json
Responseobject
post
POST /v1/runes/etch/order HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 418

{
  "runeName": "...",
  "divisibility": 33,
  "symbol": "...",
  "premine": "...",
  "isMintable": false,
  "terms": {
    "amount": "...",
    "cap": "...",
    "heightStart": "...",
    "heightEnd": "...",
    "offsetStart": "...",
    "offsetEnd": "..."
  },
  "inscriptionDetails": {
    "contentType": "...",
    "contentBase64": "..."
  },
  "delegateInscriptionId": "...",
  "destinationAddress": "...",
  "refundAddress": "...",
  "feeRate": 33,
  "appServiceFee": 33,
  "appServiceFeeAddress": "...",
  "turbo": false
}
200

Default Response

{
  "orderId": "uuid",
  "fundAddress": "...",
  "fundAmount": 200
}