GET
/
assets
/
runes
/
{rune}
/
utxos
UTxOs by Runes
curl --request GET \
  --url https://xbt-mainnet.gomaestro-api.org/v0/assets/runes/{rune}/utxos \
  --header 'api-key: <api-key>'
{
  "data": [
    {
      "address": "bc1ql8k89mfzqwjaqnq0y9uxummllp6v92fkykkv78",
      "confirmations": 50,
      "height": 840001,
      "rune_amount": "1.00",
      "satoshis": "546",
      "script_pubkey": "0014f9ec72ed2203a5d04c0f21786e6f7ff874c2a936",
      "txid": "fa2fa7ea017e9e8eaf701b26bb57c0ed3f550428b59df17bd789ad98f6bf5a2b",
      "vout": 0
    },
    {
      "address": "bc1qdkzx0dnzuyzjlu7qk86mc7rgkpwwms6zg5y5gd",
      "confirmations": 50,
      "height": 840001,
      "rune_amount": "1.00",
      "satoshis": "546",
      "script_pubkey": "00146d8467b662e1052ff3c0b1f5bc7868b05cedc342",
      "txid": "452378b6ef2bd45dbd1bada84b9468b57fcccbfef67777dfb99f5e8f3a7cfd80",
      "vout": 0
    }
  ],
  "last_updated": {
    "block_hash": "00000000000000000001332b3017e2b72bdd063145bbf808b3c1722a0fd60859",
    "block_height": 840051
  },
  "next_cursor": "AAAAAAAM0UFggP18Oo9en7nfd3f2_svMf7VolEuorRu9XdQr77Z4I0VgAAAAAA"
}

Authorizations

api-key
string
header
required

Project API Key

Path Parameters

rune
string
required

Rune, specified either by the Rune ID (etching block number and transaction index) or name (spaced or un-spaced)

Query Parameters

count
integer
default:100

The max number of results per page

Required range: x >= 0
order
enum<string>
default:asc

The order in which the results are sorted (by height at which UTxO was produced)

Available options:
asc,
desc
from
integer | null

Return only UTxOs created on or after a specific height

Required range: x >= 0
to
integer | null

Return only UTxOs created on or before a specific height

Required range: x >= 0
cursor
string | null

Pagination cursor string, use the cursor included in a page of results to fetch the next page

Response

200
application/json

Requested data

The response is of type object.