Get activity for an address

Retrieves all Rune activity for a Bitcoin address.


GET

Parameters

Path Parameters

etching
REQUIRED
string
address
REQUIRED
string Bitcoin address

Query Parameters

offset
integer Result offset
limit
integer Results per page
Status codeDescription
200Default Response
cURL
curl -L \
"https://api.hiro.so/runes/v1/etchings/{etching}/activity/{address}?offset={offset}&limit={limit}" \
-H 'Accept: application/json'
Response
{
"limit": 20,
"offset": 0,
"total": 1,
"results": [
{
"address": "bc1q7jd477wc5s88hsvenr0ddtatsw282hfjzg59wz",
"receiver_address": "bc1pgdrveee2v4ez95szaakw5gkd8eennv2dddf9rjdrlt6ch56lzrrsxgvazt",
"amount": "11000000000",
"operation": "etching",
"location": {
"block_hash": "00000000000000000000c9787573a1f1775a2b56b403a2d0c7957e9a5bc754bb",
"block_height": 840000,
"tx_id": "2bb85f4b004be6da54f766c17c1e855187327112c231ef2ff35ebad0ea67c69e",
"tx_index": 1,
"vout": 100,
"output": "2bb85f4b004be6da54f766c17c1e855187327112c231ef2ff35ebad0ea67c69e:100",
"timestamp": 1713571767
}
}
]
}