Docs • rebar labs
X / TwitterContact
  • Introduction
  • Mission
  • Rebar Shield
    • Introduction
      • Shield Overview
      • Quick Start Guide
    • Developer Guide
      • Fee Management
      • Mining Considerations
      • Security Best Practices
    • API
      • Authentication
      • API Reference
      • Rate Limits & Quotas
      • Error Codes
      • Change Log
    • FAQ
    • Glossary
    • Troubleshooting
  • Rebar Data
    • Introduction
    • Developer Guide
    • API
      • Runes
        • Etchings
        • Activity
        • Balances
      • Ordinals & BRC20s
        • Inscriptions
        • Satoshis
        • BRC 20
        • Statistics
    • RPC
      • Alkanes
      • Bitcoin
  • Resources
    • Contact
Powered by GitBook
LogoLogo

Legal

  • Terms of Service

Resources

  • Github
  • Media Kit

© 2025 Rebar Labs Inc

On this page
Export as PDF
  1. Rebar Data
  2. API
  3. Runes

Etchings

PreviousRunesNextActivity

Rune etchings

Rune etchings

get

Retrieves a paginated list of rune etchings

Query parameters
offsetintegerOptional

Result offset

limitinteger · min: 1 · max: 60Optional

Results per page

Responses
200
Default Response
application/json
get
GET /runes/v1/etchings HTTP/1.1
Host: api.rebarlabs.io
Accept: */*
200

Default Response

{
  "limit": 20,
  "offset": 0,
  "total": 1,
  "results": [
    {
      "id": "840000:1",
      "name": "ZZZZZFEHUZZZZZ",
      "spaced_name": "Z•Z•Z•Z•Z•FEHU•Z•Z•Z•Z•Z",
      "number": 1,
      "divisibility": 2,
      "symbol": "ᚠ",
      "turbo": false,
      "mint_terms": {
        "amount": "100",
        "cap": "1111111",
        "height_start": 840000,
        "height_end": 1050000,
        "offset_start": 0,
        "offset_end": 200
      },
      "supply": {
        "current": "11274916350",
        "minted": "274916100",
        "total_mints": "250",
        "mint_percentage": "59.4567",
        "mintable": true,
        "burned": "5100",
        "total_burns": "17",
        "premine": "11000000000"
      },
      "location": {
        "block_hash": "00000000000000000000c9787573a1f1775a2b56b403a2d0c7957e9a5bc754bb",
        "block_height": 840000,
        "tx_id": "2bb85f4b004be6da54f766c17c1e855187327112c231ef2ff35ebad0ea67c69e",
        "tx_index": 1,
        "vout": 100,
        "output": "2bb85f4b004be6da54f766c17c1e855187327112c231ef2ff35ebad0ea67c69e:100",
        "timestamp": 1713571767
      }
    }
  ]
}

Rune etching

get

Retrieves information for a Rune etching

Path parameters
etchingany ofRequired
stringOptionalPattern: ^[0-9]+:[0-9]+$
or
stringOptionalPattern: ^[0-9]+$
or
stringOptionalPattern: ^[A-Z]+$
or
stringOptionalPattern: ^[A-Za-z]+(•[A-Za-z]+)+$
Responses
200
Default Response
application/json
404
Default Response
application/json
get
GET /runes/v1/etchings/{etching} HTTP/1.1
Host: api.rebarlabs.io
Accept: */*
{
  "id": "840000:1",
  "name": "ZZZZZFEHUZZZZZ",
  "spaced_name": "Z•Z•Z•Z•Z•FEHU•Z•Z•Z•Z•Z",
  "number": 1,
  "divisibility": 2,
  "symbol": "ᚠ",
  "turbo": false,
  "mint_terms": {
    "amount": "100",
    "cap": "1111111",
    "height_start": 840000,
    "height_end": 1050000,
    "offset_start": 0,
    "offset_end": 200
  },
  "supply": {
    "current": "11274916350",
    "minted": "274916100",
    "total_mints": "250",
    "mint_percentage": "59.4567",
    "mintable": true,
    "burned": "5100",
    "total_burns": "17",
    "premine": "11000000000"
  },
  "location": {
    "block_hash": "00000000000000000000c9787573a1f1775a2b56b403a2d0c7957e9a5bc754bb",
    "block_height": 840000,
    "tx_id": "2bb85f4b004be6da54f766c17c1e855187327112c231ef2ff35ebad0ea67c69e",
    "tx_index": 1,
    "vout": 100,
    "output": "2bb85f4b004be6da54f766c17c1e855187327112c231ef2ff35ebad0ea67c69e:100",
    "timestamp": 1713571767
  }
}
  • GETRune etchings
  • GETRune etching