Get All Rune Trades by Blocks
This endpoint returns all Rune trade activity across the chain. Results are cursor-paginated and can be filtered by runeId, fromBlockHeight, and toBlockHeight.
Get rune transfer events (inputs and outputs) from the blockchain.
Filtering Options:
Filter by block range using
fromBlockHeight/toBlockHeightFilter by specific rune using
runeId
Pagination:
Uses cursor-based pagination that returns full blocks of data with variable number of blocks per page depending how many transfers occurred in that period.
Pass the
nextCursorfrom the response ascursorto fetch the next page. Stop on items empty or whennextCursoris null.Returns complete blocks (no partial results within a block)
Response Structure:
Each item represents a transaction with rune transfers
inputs: Rune amounts consumed by the transactionoutputs: Rune amounts created by the transaction
Examples:
Filter by rune:
/block/runes/transfers?runeId=840000:1Block range:
/block/runes/transfers?fromBlockHeight=870000&toBlockHeight=875000
Filter transfers by specific rune ID
840000:1Start of block range (defaults to rune activation height)
870000End of block range
875000Pagination cursor from previous response
Default Response
Invalid input
Unauthorized
Not found
Rate limit exceeded
Internal server error
Last updated