Get All Rune Transfers by Blocks
get
Authorizations
x-api-keystringRequired
Query parameters
runeIdstringOptionalExample:
Filter transfers by specific rune ID
840000:1fromBlockHeightnumberOptionalExample:
Start of block range (defaults to rune activation height)
870000toBlockHeightnumberOptionalExample:
End of block range
875000cursorstringOptional
Pagination cursor from previous response
Responses
200
Default Response
application/json
nextCursorstring · nullableRequired
Cursor for fetching the next page of results
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/v1/block/runes/transfers
GET /v1/block/runes/transfers HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Accept: */*
{
"nextCursor": "text",
"items": [
{
"blockHeight": 875000,
"blockTime": "2024-12-20T15:30:00.000Z",
"txid": "text",
"inputs": [
{
"runeId": "840000:1",
"address": "text",
"amount": "1000000",
"index": 0
}
],
"outputs": [
{
"runeId": "840000:1",
"address": "text",
"amount": "1000000",
"index": 0
}
]
}
]
}Last updated