GET
/
addresses
/
{address}
/
transfer_inscriptions
DRC20 Transfer Inscriptions by Address
curl --request GET \
  --url https://xdg-mainnet.gomaestro-api.org/v0/addresses/{address}/transfer_inscriptions \
  --header 'api-key: <api-key>'
{
  "data": [
    {
      "inscription_id": "f02da3d6bebab13d5d604be1ed73d9a9c677dadf6ca71bc5fff7d99cdead11b0i0",
      "sat_amount": 5678,
      "ticker": "TUAH",
      "token_amount": 1234,
      "utxo_block_height": 843010,
      "utxo_confirmations": 23700,
      "utxo_sat_offset": 0,
      "utxo_txid": "e2283e7c915ef074806136e0002cbc69f5fdd2e9f70f14b0eab48cdcbe867cc1",
      "utxo_vout": 0
    }
  ],
  "last_updated": {
    "block_hash": "00000000000000000000ec10254178fe52253f40c1fad252e892d9aa22ee8fa7",
    "block_height": 866710
  },
  "next_cursor": "BFRVQUhgfQot2JciKRPVj8lXsEKVJhF6CmHJZGQv6TsHfzKMzsEAAAAA"
}

Authorizations

api-key
string
header
required

Project API Key

Path Parameters

address
string
required

Dogecoin address or hex encoded script pubkey

Query Parameters

ticker
string | null

DRC20 ticker string

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

Available options:
asc,
desc
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.