BRC-20 Activity
Returns historical BRC-20 activity (mints, transfers, deployments) for a given address and ticker.
get
Get the transfer history for a and address and a specific BRC20 ticker.
Authorizations
Path parameters
addressstring Β· BitcoinAddress Β· min: 10RequiredExample:
bc1p59dqkq5we23urjnmn4sspy4da79hwql8tgaawu6adjk09jrle98q963cww
tickerstring Β· min: 1RequiredExample:
Ticker of the BRC20 token (e.g. ordi, sats, etc.)
{"value":"ordi"}
Query parameters
offsetnumberOptional
limitnumber Β· min: 25 Β· max: 25Optional
Responses
200
Default Response
application/json
400
Invalid input
application/json
401
Unauthorized
application/json
404
Not found
application/json
429
Rate limit exceeded
application/json
500
Internal server error
application/json
get
GET /v1/brc20/address/{address}/ticker/{ticker}/activity HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Accept: */*
{
"limit": 1,
"offset": 1,
"items": [
{
"fromAddress": "text",
"toAddress": "text",
"txid": "text",
"amount": "text",
"blockHeight": 1,
"blockTime": "text"
}
]
}
Last updated