Activity by Inscription
curl --request GET \
--url https://xbt-mainnet.gomaestro-api.org/v0/assets/inscriptions/{inscription_id}/activity \
--header 'api-key: <api-key>'import requests
url = "https://xbt-mainnet.gomaestro-api.org/v0/assets/inscriptions/{inscription_id}/activity"
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/assets/inscriptions/{inscription_id}/activity', 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/assets/inscriptions/{inscription_id}/activity",
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/assets/inscriptions/{inscription_id}/activity"
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/assets/inscriptions/{inscription_id}/activity")
.header("api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://xbt-mainnet.gomaestro-api.org/v0/assets/inscriptions/{inscription_id}/activity")
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": [
{
"from": {
"address": "bc1pjzf5qmmzt57mtxgrgh42aazhnzwk7ge59e89dl6rde5zwg8he02q9u4xrr",
"input_index": 0,
"sat_offset": 0,
"script_pubkey": "51209093406f625d3db5990345eaaef457989d6f23342e4e56ff436e682720f7cbd4"
},
"height": 839418,
"to": {
"address": "bc1p5u4y8vdhn46adxhfv5scfv4c8myykw6r5uyzlavm42k4wgjewktq7xqcyr",
"output_vout": 0,
"sat_offset": 0,
"script_pubkey": "5120a72a43b1b79d75d69ae9652184b2b83ec84b3b43a7082ff59baaad5722597596"
},
"tx_hash": "b1ef66c2d1a047cbaa6260b74daac43813924378fe08ef8545da4cb79e8fcf00",
"tx_index": 1257,
"type": "transfer"
},
{
"from": {
"address": "bc1p5u4y8vdhn46adxhfv5scfv4c8myykw6r5uyzlavm42k4wgjewktq7xqcyr",
"input_index": 0,
"sat_offset": 0,
"script_pubkey": "5120a72a43b1b79d75d69ae9652184b2b83ec84b3b43a7082ff59baaad5722597596"
},
"height": 839876,
"to": {
"address": "bc1ppth27qnr74qhusy9pmcyeaelgvsfky6qzquv9nf56gqmte59vfhqwkqguh",
"output_vout": 0,
"sat_offset": 0,
"script_pubkey": "51200aeeaf0263f5417e40850ef04cf73f43209b13401038c2cd34d201b5e685626e"
},
"tx_hash": "47c7260764af2ee17aa584d9c035f2e5429aefd96b8016cfe0e3f0bcf04869a3",
"tx_index": 887,
"type": "transfer"
}
],
"last_updated": {
"block_hash": "000000000000000000001d3fb5743dcb30e12af7b0cd9c8d95c8b1a1fdd5c8d8",
"block_height": 839908
},
"next_cursor": null
}Inscriptions
Activity by Inscription
Get activity history for a specific Bitcoin inscription including transfers, sales, and ownership changes.
GET
/
assets
/
inscriptions
/
{inscription_id}
/
activity
Activity by Inscription
curl --request GET \
--url https://xbt-mainnet.gomaestro-api.org/v0/assets/inscriptions/{inscription_id}/activity \
--header 'api-key: <api-key>'import requests
url = "https://xbt-mainnet.gomaestro-api.org/v0/assets/inscriptions/{inscription_id}/activity"
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/assets/inscriptions/{inscription_id}/activity', 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/assets/inscriptions/{inscription_id}/activity",
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/assets/inscriptions/{inscription_id}/activity"
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/assets/inscriptions/{inscription_id}/activity")
.header("api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://xbt-mainnet.gomaestro-api.org/v0/assets/inscriptions/{inscription_id}/activity")
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": [
{
"from": {
"address": "bc1pjzf5qmmzt57mtxgrgh42aazhnzwk7ge59e89dl6rde5zwg8he02q9u4xrr",
"input_index": 0,
"sat_offset": 0,
"script_pubkey": "51209093406f625d3db5990345eaaef457989d6f23342e4e56ff436e682720f7cbd4"
},
"height": 839418,
"to": {
"address": "bc1p5u4y8vdhn46adxhfv5scfv4c8myykw6r5uyzlavm42k4wgjewktq7xqcyr",
"output_vout": 0,
"sat_offset": 0,
"script_pubkey": "5120a72a43b1b79d75d69ae9652184b2b83ec84b3b43a7082ff59baaad5722597596"
},
"tx_hash": "b1ef66c2d1a047cbaa6260b74daac43813924378fe08ef8545da4cb79e8fcf00",
"tx_index": 1257,
"type": "transfer"
},
{
"from": {
"address": "bc1p5u4y8vdhn46adxhfv5scfv4c8myykw6r5uyzlavm42k4wgjewktq7xqcyr",
"input_index": 0,
"sat_offset": 0,
"script_pubkey": "5120a72a43b1b79d75d69ae9652184b2b83ec84b3b43a7082ff59baaad5722597596"
},
"height": 839876,
"to": {
"address": "bc1ppth27qnr74qhusy9pmcyeaelgvsfky6qzquv9nf56gqmte59vfhqwkqguh",
"output_vout": 0,
"sat_offset": 0,
"script_pubkey": "51200aeeaf0263f5417e40850ef04cf73f43209b13401038c2cd34d201b5e685626e"
},
"tx_hash": "47c7260764af2ee17aa584d9c035f2e5429aefd96b8016cfe0e3f0bcf04869a3",
"tx_index": 887,
"type": "transfer"
}
],
"last_updated": {
"block_hash": "000000000000000000001d3fb5743dcb30e12af7b0cd9c8d95c8b1a1fdd5c8d8",
"block_height": 839908
},
"next_cursor": null
}Authorizations
Project API Key
Path Parameters
Inscription ID
Query Parameters
The max number of transactions per page
Required range:
x >= 0The order in which the results are sorted (by block height and tx index in the block)
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

