Returns paged Rune activity with kind, scope, sort, address, and time filters.
Activity rows are normalized event views intended for timelines. For exact wallet spendability, combine them with balance or outpoint endpoints.
What to know
- `page` pagination is 1-based. `limit` may be clamped by the handler to protect the backing index.
POST https://api.alkanode.com/rpc
{
"id": 1,
"jsonrpc": "2.0",
"method": "runes.get_activity",
"params": {
"id": "1:0",
"kind": "mint",
"limit": 10,
"page": 1
}
}Example response
{
"id": 1,
"jsonrpc": "2.0",
"result": {
"entries": [
{
"amount": "1",
"destination": "bc1pc8sn4zzfessnglpvy8mj27z0jkgp3j6ra2l7w3rpjcatf84mhdeqtlveta",
"height": 840113,
"id": "1:0",
"kind": "mint",
"txid": "c0ace2bc013a2ea764143aabd41333590cb2ce3db8885c6467e50868143c5cc2"
}
],
"ok": true,
"total": 105594794
}
}