Some LeadX API endpoints return large result sets. To keep responses fast and manageable, pagination is included on certain endpoints. Currently, pagination is available on:Documentation Index
Fetch the complete documentation index at: https://docs.leadx.com/llms.txt
Use this file to discover all available pages before exploring further.
-
POST /v1/ucc/debtor -
POST /v1/ucc/secured_party
How Pagination Works
The LeadX API uses offset-based pagination with two parameters:-
page: The page number to retrieve (default:1) -
per_page: The number of records per page (default:50, max:50)
-
page_number: The current page number -
per_page: The number of records returned per page -
total_pages: The total number of available pages -
total_records: The total number of matching records
Terminal
Pagination Example
Notes
-
If
pageexceedstotal_pages, therecordsarray will be empty. -
per_pagevalues outside the 1–50 range will be rejected and result in a422validation error. - Pagination is currently limited to specific endpoints, but may be added to additional endpoints in the future.