GET /v1/transactions

5.1 GET /v1/transactions

Date range filtering

You can specify a start and end date window to retrieve transaction data made within the timeframe, inclusive of the dates. For example, specifying start and end as 2022-10-01 and 2022-10-31 returns all transactions made in Oct 2022. For retrieving transactions on a specific day, set start and end to the same date.

If start and end are not specified, the response will return all transactions since inception.

Transactions are returned in ascending order by time of creation.

Pagination

Additionally, the end point uses cursor pagination for retrieval of data. Results are sorted in ascending order of transaction creation date.

Last updated