GET
/
addresses
/
{address}
/
utxos
UTxOs by Address
curl --request GET \
  --url https://xdg-mainnet.gomaestro-api.org/v0/addresses/{address}/utxos \
  --header 'api-key: <api-key>'
{
  "data": [
    {
      "address": "DEvbE2KyPKAzDsj511wijyF1NSBN9qMcix",
      "confirmations": 121,
      "dunes": [
        {
          "amount": "5.00000000",
          "dune_id": "5095478:8"
        }
      ],
      "height": 5095478,
      "inscriptions": [],
      "satoshis": "100000",
      "script_pubkey": "76a9146b53cbbe67beef7079e6ea3e39bdfdc34bf2707b88ac",
      "txid": "ee4b62b6e221eb92ea821ecb7932eb325647d9fdce5632747905146a561b8a4b",
      "vout": 1
    },
    {
      "address": "DEvbE2KyPKAzDsj511wijyF1NSBN9qMcix",
      "confirmations": 121,
      "dunes": [],
      "height": 5095478,
      "inscriptions": [],
      "satoshis": "1999441400000",
      "script_pubkey": "76a9146b53cbbe67beef7079e6ea3e39bdfdc34bf2707b88ac",
      "txid": "ee4b62b6e221eb92ea821ecb7932eb325647d9fdce5632747905146a561b8a4b",
      "vout": 2
    }
  ],
  "last_updated": {
    "block_hash": "cedd9ed0572e357af2e383382053ee40cb0ab38a07f58bae74314117c878fbd5",
    "block_height": 5095599
  },
  "next_cursor": null
}

Authorizations

api-key
string
header
required

Project API Key

Path Parameters

address
string
required

Dogecoin address or hex encoded script pubkey

Query Parameters

filter_dust
boolean | null

Ignore UTxOs containing less than 100000 shibes

filter_dust_threshold
integer | null

Ignore UTxOs containing less than specified shibes

Required range: x >= 0
exclude_metaprotocols
boolean | null

Exclude metaprotocol UTxOs (UTxOs involved in metaprotocols like dunes or inscriptions)

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.