GET
/
addresses
/
{address}
/
runes
/
{rune}
(deprecated) Rune UTxOs by Address and Rune
curl --request GET \
  --url https://xbt-mainnet.gomaestro-api.org/v0/addresses/{address}/runes/{rune} \
  --header 'api-key: <api-key>'
{
  "data": [
    {
      "confirmations": 13634,
      "height": 876954,
      "rune_amount": "2500000",
      "satoshis": "546",
      "txid": "67715c2b42eaa053fc174c68ca4f393446986567ed0509fa78eb3aa9d0b8db0b",
      "vout": 3
    },
    {
      "confirmations": 13634,
      "height": 876954,
      "rune_amount": "2500000",
      "satoshis": "546",
      "txid": "67715c2b42eaa053fc174c68ca4f393446986567ed0509fa78eb3aa9d0b8db0b",
      "vout": 4
    },
    {
      "confirmations": 13634,
      "height": 876954,
      "rune_amount": "2500000",
      "satoshis": "546",
      "txid": "67715c2b42eaa053fc174c68ca4f393446986567ed0509fa78eb3aa9d0b8db0b",
      "vout": 5
    },
    {
      "confirmations": 13634,
      "height": 876954,
      "rune_amount": "2500000",
      "satoshis": "546",
      "txid": "67715c2b42eaa053fc174c68ca4f393446986567ed0509fa78eb3aa9d0b8db0b",
      "vout": 6
    },
    {
      "confirmations": 13634,
      "height": 876954,
      "rune_amount": "2500000",
      "satoshis": "546",
      "txid": "67715c2b42eaa053fc174c68ca4f393446986567ed0509fa78eb3aa9d0b8db0b",
      "vout": 7
    },
    {
      "confirmations": 13634,
      "height": 876954,
      "rune_amount": "2500000",
      "satoshis": "546",
      "txid": "67715c2b42eaa053fc174c68ca4f393446986567ed0509fa78eb3aa9d0b8db0b",
      "vout": 8
    },
    {
      "confirmations": 13634,
      "height": 876954,
      "rune_amount": "2500000",
      "satoshis": "546",
      "txid": "67715c2b42eaa053fc174c68ca4f393446986567ed0509fa78eb3aa9d0b8db0b",
      "vout": 9
    }
  ],
  "last_updated": {
    "block_hash": "0000000000000000000210d44d102ab68eaa052ce03fbe216d313294725bdfaf",
    "block_height": 890587
  },
  "next_cursor": null
}

Authorizations

api-key
string
header
required

Project API Key

Path Parameters

address
string
required

Bitcoin address or hex encoded script pubkey

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.