Get All Rune Transfers by Blocks

This endpoint returns all Rune transfer activity across the chain. Results are cursor-paginated and can be filtered by runeId, fromBlockHeight, and toBlockHeight.

get

Get rune transfer events (inputs and outputs) from the blockchain.

Filtering Options:

  • Filter by block range using fromBlockHeight/toBlockHeight

  • Filter 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 nextCursor from the response as cursor to fetch the next page. Stop on items empty or when nextCursor is 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 transaction

  • outputs: Rune amounts created by the transaction

Examples:

  • Filter by rune: /block/runes/transfers?runeId=840000:1

  • Block range: /block/runes/transfers?fromBlockHeight=870000&toBlockHeight=875000

Authorizations
x-api-keystringRequired
Query parameters
runeIdstringOptional

Filter transfers by specific rune ID

Example: 840000:1
fromBlockHeightnumberOptional

Start of block range (defaults to rune activation height)

Example: 870000
toBlockHeightnumberOptional

End of block range

Example: 875000
cursorstringOptional

Pagination cursor from previous response

Responses
chevron-right
200

Default Response

application/json
get
/v1/block/runes/transfers

Last updated