GET
/
addresses
/
{address}
/
dunes
/
{dune}
Dune UTxOs by Address and Dune
curl --request GET \
  --url https://xdg-mainnet.gomaestro-api.org/v0/addresses/{address}/dunes/{dune} \
  --header 'api-key: <api-key>'
{
  "data": [
    {
      "confirmations": 3597,
      "dune_amount": "0.00001000",
      "height": 5280972,
      "satoshis": "100000",
      "txid": "cd990aa533ffb733934344fafbc07350ba5945a5a50fca3adb9845573a99e545",
      "vout": 1
    }
  ],
  "last_updated": {
    "block_hash": "e45be2dac59c8b6a2090a6cee4c5c035c6d285b9ca4690fe7d454d9d6ad67a42",
    "block_height": 5284569
  },
  "next_cursor": null
}

Authorizations

api-key
string
header
required

Project API Key

Path Parameters

address
string
required

Dogecoin address or hex encoded script pubkey

dune
string
required

Dune, specified either by the Dune 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.