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>'import requests
url = "https://xbt-mainnet.gomaestro-api.org/v0/addresses/{address}/brc20/transfer_inscriptions"
headers = {"api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'api-key': '<api-key>'}};
fetch('https://xbt-mainnet.gomaestro-api.org/v0/addresses/{address}/brc20/transfer_inscriptions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://xbt-mainnet.gomaestro-api.org/v0/addresses/{address}/brc20/transfer_inscriptions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://xbt-mainnet.gomaestro-api.org/v0/addresses/{address}/brc20/transfer_inscriptions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://xbt-mainnet.gomaestro-api.org/v0/addresses/{address}/brc20/transfer_inscriptions")
.header("api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://xbt-mainnet.gomaestro-api.org/v0/addresses/{address}/brc20/transfer_inscriptions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"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
}Addresses
BRC20 Transfer Inscriptions by Address
Get BRC-20 transfer inscriptions for a Bitcoin address with transfer amounts and token details.
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>'import requests
url = "https://xbt-mainnet.gomaestro-api.org/v0/addresses/{address}/brc20/transfer_inscriptions"
headers = {"api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'api-key': '<api-key>'}};
fetch('https://xbt-mainnet.gomaestro-api.org/v0/addresses/{address}/brc20/transfer_inscriptions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://xbt-mainnet.gomaestro-api.org/v0/addresses/{address}/brc20/transfer_inscriptions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://xbt-mainnet.gomaestro-api.org/v0/addresses/{address}/brc20/transfer_inscriptions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://xbt-mainnet.gomaestro-api.org/v0/addresses/{address}/brc20/transfer_inscriptions")
.header("api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://xbt-mainnet.gomaestro-api.org/v0/addresses/{address}/brc20/transfer_inscriptions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"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
Project API Key
Path Parameters
Bitcoin address or hex encoded script pubkey
Query Parameters
BRC20 ticker string
The max number of results per page
Required range:
x >= 0The order in which the results are sorted
Available options:
asc, desc Pagination cursor string, use the cursor included in a page of results to fetch the next page
Was this page helpful?
⌘I

