Rune Activity

Returns historical activity (transfers, mints, etc.) for a specific Rune held by a given address.

get

Get rune activity for a specific address and rune

Authorizations
Path parameters
addressstringRequiredExample: bc1px3kttdtg479vqfu0s2lhxvyuz2snhl8jct3f84k5heerl750n28scr9qt6
identifierstringRequiredExample: {"value":"UNCOMMONGOODS"}
Query parameters
offsetnumberOptionalDefault: 0
limitnumber Β· min: 25 Β· max: 25OptionalDefault: 25
Responses
200

Rune activity for a specific rune or address

application/json
get
GET /v1/ordinals/address/{address}/runes/{identifier}/activity HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Accept: */*
{
  "offset": 1,
  "limit": 1,
  "items": [
    {
      "blockHeight": 1,
      "blockTime": "text",
      "txid": "text",
      "index": 1,
      "type": "text",
      "amount": "text",
      "address": "text"
    }
  ]
}

Last updated