Rune transaction history

This endpoint returns a paginated list of Rune transactions for a given address. Includes transfers (incoming & outgoing), etches, mints, burns and full transaction metadata.

Useful for building wallet activity feeds, token balances, or Rune explorers.

get

Retrieve transaction history for a specific rune for a specific address.

Authorizations
Path parameters
addressstring · BitcoinAddress · min: 10RequiredDefault: bc1q0egjvlcfq77cxd9kvpgppyuxckzvws46e3sxch
runeIdstringRequired
Query parameters
offsetnumberOptionalDefault: 0
limitnumber · min: 25 · max: 60OptionalDefault: 60
Responses
200
Default Response
application/json
get
GET /v1/ordinals/address/{address}/runes/{runeId} HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Accept: */*
{
  "transactions": [
    {
      "txid": "text",
      "blockHeight": 1,
      "blockTime": 1,
      "ownActivity": [
        {
          "address": "text",
          "sent": 1,
          "received": 1,
          "outgoing": 1,
          "incoming": 1
        }
      ],
      "totalOut": 1,
      "totalIn": 1,
      "addressList": {
        "hasMore": true,
        "items": [
          {
            "address": "text",
            "type": "text",
            "isInput": true,
            "isOutput": true
          }
        ]
      },
      "runes": {
        "ownActivity": {
          "items": [
            {
              "runeId": "text",
              "address": "text",
              "sent": "text",
              "received": "text",
              "outgoing": "text",
              "incoming": "text"
            }
          ],
          "hasMore": true
        },
        "allActivity": {
          "items": [
            {
              "runeId": "text",
              "outgoing": "text",
              "incoming": "text",
              "isMint": true,
              "isEtch": true,
              "isBurn": true
            }
          ],
          "hasMore": true
        }
      },
      "inscriptions": {
        "items": [
          {
            "inscriptionId": "text",
            "contentType": "text",
            "address": "text",
            "sent": true,
            "received": true,
            "inscribed": true,
            "burned": true
          }
        ],
        "hasMore": true
      }
    }
  ],
  "offset": 1,
  "limit": 1
}

Last updated