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

Rune Data

PreviousExecuteNextBRC-20
๐Ÿ“š
๐Ÿ”ฒ
๐Ÿ”ฒ
post

Batch detail lookup for a list of Rune IDs.

Authorizations
Body
runesstring[] ยท min: 1 ยท max: 500RequiredExample: ["UNCOMMONGOODS","840000:3"]
Responses
200
Rune details
application/json
400
Invalid input
application/json
401
Unauthorized
application/json
404
Not found
application/json
429
Rate limit exceeded
application/json
500
Internal server error
application/json
post
POST /v1/runes HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 38

{
  "runes": [
    "UNCOMMONGOODS",
    "840000:3"
  ]
}
{
  "items": [
    {
      "id": "text",
      "block": 1,
      "burned": "text",
      "divisibility": 1,
      "etching": "text",
      "mints": "text",
      "number": "text",
      "premine": "text",
      "spaced_rune": "text",
      "symbol": "text",
      "terms": {
        "amount": "text",
        "cap": "text",
        "height": [
          1
        ],
        "offset": [
          1
        ]
      },
      "timestamp": 1,
      "mintable": true,
      "parent": "text"
    }
  ]
}