pulsechain.box
ots

ots_searchTransactionsAfter

Returns transactions sent or received by an address, searching forwards from a given transaction index.

Returns transactions sent or received by an address, searching forwards from a given transaction index.

Parameters

#TypeDescription
1stringAddress to search transactions for.
2numberBlock number to start searching forwards from. Use 0 to start from genesis.
3numberPage size (max number of results to return).

Returns

FieldTypeDescription
txsarrayArray of transaction objects matching the address.
receiptsarrayCorresponding transaction receipts.
firstPagebooleanWhether this is the first page (oldest).
lastPagebooleanWhether this is the last page (most recent).

Example

curl -s -X POST https://rpc.pulsechain.box \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"ots_searchTransactionsAfter","params":["0x0000000000000000000000000000000000000000", 0, 5],"id":1}'
TRY IT

Notes

  • Use 0 as the block number to start from genesis.
  • Pair with ots_searchTransactionsBefore for backward pagination.
  • Requires the OTS address appearance index to be built on the node.
Copyright © 2026 AvecdrA. Made with love.