Documentation Index
Fetch the complete documentation index at: https://docs.cevoid.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Pagination is used by the Cevoid API to limit data returned in a single request, making it easier to work with large datasets. All API endpoints that return multiple items support pagination.Pagination Parameters
limit
- Type: Integer
- Default: 10 items
- Maximum: 25 items
- Description: Controls the number of items returned per request
skip
- Type: Integer
- Default: 0
- Description: Number of items to skip from the beginning of the result set
Making Paginated Requests
Basic Pagination
Pagination with Custom Parameters
Response Format
Paginated responses include helpful metadata to navigate through the dataset:Response Fields
count: Total number of items availablenext: URL for the next page of results (if available)nodes: Array containing the requested items
Pagination Best Practices
Efficient Navigation
- Start with reasonable limits: Use the default limit of 10 for most use cases
- Use the
nextURL: Don’t manually construct pagination URLs - Handle empty results: Check if
nodesis empty to detect the end of results - Respect rate limits: Don’t make requests too quickly when paginating through large datasets