How to work with paginated API responses
/status/get-tx-history
endpoint supports pagination through the following parameters:
Parameter | Type | Required | Description |
---|---|---|---|
limit | string | Yes | Maximum number of transactions to return in a single request (e.g., 10 ) |
continuation | string | No | A cursor value received from a previous response used to fetch the next page |
continuation
property will be present when more results are available beyond the current page. If it’s absent or null, you’ve reached the end of the results.
continuation
token from the previous response:
limit
parameter must be a positive number.