GET
/
addresses
/
{address}
/
brc20
/
transfer_inscriptions
BRC20 Transfer Inscriptions by Address
curl --request GET \
  --url https://xbt-mainnet.gomaestro-api.org/v0/addresses/{address}/brc20/transfer_inscriptions \
  --header 'api-key: <api-key>'
{
  "data": [
    {
      "inscription_id": "1da6ca5f0c07634d3e233197997a21091f10907c942b2a8e77a4d77381ca96b8i0",
      "satoshis": "546",
      "ticker": "oxbt",
      "token_amount": "10000000.000000000000",
      "utxo_block_height": 851440,
      "utxo_confirmations": 481,
      "utxo_sat_offset": 0,
      "utxo_txid": "1da6ca5f0c07634d3e233197997a21091f10907c942b2a8e77a4d77381ca96b8",
      "utxo_vout": 0
    }
  ],
  "last_updated": {
    "block_hash": "00000000000000000000023f7c4b362352c7948fb6ed7775bcd558ef1c7966c0",
    "block_height": 851921
  },
  "next_cursor": null
}

Authorizations

api-key
string
header
required

Project API Key

Path Parameters

address
string
required

Bitcoin address or hex encoded script pubkey

Query Parameters

ticker
string | null

BRC20 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.