Pagination
The Capital Check In API uses cursor-based pagination for endpoints that return lists of resources.Pagination Parameters
When making requests to endpoints that support pagination, you can use the following query parameters:Example Request
Response Format
Paginated responses include pagination metadata:Pagination Metadata
Best Practices
- Use appropriate
limitvalues based on your needs - Always check
hasMorebefore making additional requests - Store the
nextCursorfor subsequent requests - Handle cases where
nextCursoris null (end of results)