Retrieve paginated list of transactions for a specific address using cursor-based pagination. The transactions are sorted by block time in descending order.
You can also filter the transactions by accepted only, and retrieve the payload of the transaction if needed.
API key required for authentication. Get your API key at https://developer.kas.fyi
Kaspa address
"kaspa:qpzpfwcsqsxhxwup26r55fd0ghqlhyugz8cp6y3wxuddc02vcxtjg75pspnwz"
A cursor for pagination through results. Set starting_after to the transaction ID where you want to begin the next page.
For example, if your request returns 100 transactions ending with transaction ID obj_foo, use starting_after=obj_foo in your next request to fetch the following page.
If provided, the transactions will be sorted by transaction time in descending order. Otherwise, the first page of results will be returned.
"a7177c55769381a56c126e458c8bb6046613b8a8d45c2f8d3ca5dc71a065279a"
A cursor for pagination through results. Set ending_before to the transaction ID where you want to end the previous page.
For example, if your request returns 100 objects starting with transaction ID obj_bar, use ending_before=obj_bar in your next request to fetch the preceding page.
If provided, the transactions will be sorted by transaction time in ascending order.
ending_before cannot be used in combination with starting_after.
"a7177c55769381a56c126e458c8bb6046613b8a8d45c2f8d3ca5dc71a065279a"
Number of items to return, the max number of items is 100. Default is 20.
20
Whether to include the payload of the transaction. Default is false.
false
Whether to include accepted transactions only. Default is false.
false