Get activity for a block

Retrieves a paginated list of rune activity for a block.


GET

Parameters

Path Parameters

block
REQUIRED
string

Query Parameters

offset
integer Result offset
limit
integer Results per page
Status codeDescription
200Default Response
cURL
curl -L \
"https://api.hiro.so/runes/v1/blocks/{block}/activity?offset={offset}&limit={limit}" \
-H 'Accept: application/json'
Response
{
"limit": 20,
"offset": 0,
"total": 1,
"results": [
{
"rune": {
"id": "string",
"number": 0,
"name": "string",
"spaced_name": "string"
},
"address": "SP318Q55DEKHRXJK696033DQN5C54D9K2EE6DHRWP",
"receiver_address": "SP318Q55DEKHRXJK696033DQN5C54D9K2EE6DHRWP",
"amount": "string",
"operation": "etching",
"location": {
"block_hash": "0x4839a8b01cfb39ffcc0d07d3db31e848d5adf5279d529ed5062300b9f353ff79",
"block_height": 144000,
"tx_id": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
"tx_index": 144000,
"vout": 0,
"output": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
"timestamp": 0
}
}
]
}