Get BRC-20 activity

Retrieves BRC-20 activity filtered by ticker, address, operation, or block height.


GET

Parameters

Query Parameters

ticker
array
block_height
string Bitcoin block height
operation
array
address
string Bitcoin address
offset
integer Result offset
limit
integer Results per page
Status codeDescription
200Default Response
cURL
curl -L \
"https://api.hiro.so/ordinals/v1/brc-20/activity?ticker={ticker}&block_height=777678&operation={operation}&address=bc1p8aq8s3z9xl87e74twfk93mljxq6alv4a79yheadx33t9np4g2wkqqt8kc5&offset={offset}&limit={limit}" \
-H 'Accept: application/json'
Response
{
"limit": 20,
"offset": 0,
"total": 1,
"results": [
{
"operation": "deploy",
"ticker": "string",
"inscription_id": "string",
"block_height": 144000,
"block_hash": "0x4839a8b01cfb39ffcc0d07d3db31e848d5adf5279d529ed5062300b9f353ff79",
"tx_id": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
"location": "string",
"address": "SP318Q55DEKHRXJK696033DQN5C54D9K2EE6DHRWP",
"timestamp": 0,
"mint": {
"amount": "string"
},
"deploy": {
"max_supply": "string",
"mint_limit": "string",
"decimals": 0
},
"transfer": {
"amount": "string",
"from_address": "string"
},
"transfer_send": {
"amount": "string",
"from_address": "string",
"to_address": "string"
}
}
]
}