Request
5.2 Request
Request Parameters
The paginated endpoint takes in the following as optional query parameters
[Filter]
start
String (YYYY-MM-DD)
Filter transactions starting from date (inclusive)
[Filter]
end
String (YYYY-MM-DD)
Filter transactions ending on date (inclusive)
[Pagination]
limit
Number (Default: 1000)
Indicates the number of results per page.
[Pagination]
after
String
Takes reference to this cursor to get to the next page
[Pagination]
before
String
Takes reference to this cursor to get to the previous page
Sample Requests
Request without query params (returns all data, with default page limit of 1000)
Request with filter (returns transactions that occurred between 2022-02-01 and 2022-02-28, inclusive of both dates, with default page limit of 1000)
Request with filter and page limit of 10 (returns transactions that occurred between 2022-02-01 and 2022-02-28, inclusive of both dates, with maximum 10 transactions per page)
Request with filter and page limit of 10, with after param, using
end_cursor
of previous request (returns transactions that occurred between 2022-02-01 and 2022-02-28, inclusive of both dates, with maximum 10 transactions per page, specifying the next page)
Last updated