InvestiFiPartner APIBeta
Prod Environment

Pagination

Cursor-based pagination on the list endpoints using last_record_number.

The two list endpoints use cursor-based pagination on last_record_number.

Request paramTypeDescription
per_pageintegerPage size. Default 25, range 1–100.
last_record_numberintegerCursor. Pass the value returned by the previous response. Use 0 (the default) for the first page.
Response fieldTypeDescription
total_recordsintegerTotal records matching the filters across all pages.
last_record_numberintegerCursor — pass it as the last_record_number query param on the next request.
per_pageintegerPage size in effect.

To page through all results: request with last_record_number=0, then repeat using the last_record_number from each response until you have retrieved total_records items.