Documentation Index
Fetch the complete documentation index at: https://docs.dualentry.com/llms.txt
Use this file to discover all available pages before exploring further.
Pagination
List endpoints support limit/offset pagination to efficiently handle large datasets.Parameters
| Parameter | Type | Default | Max | Description |
|---|---|---|---|---|
limit | integer | 100 | 100 | Number of records to return per page (1-100) |
offset | integer | 0 | - | Number of records to skip before starting to return results |
Maximum Limit: The
limit parameter is capped at 100. If you request more than 100 items, the API will return 100 items.How It Works
- Page 1:
offset=0, limit=100→ Returns records 1-100 - Page 2:
offset=100, limit=100→ Returns records 101-200 - Page 3:
offset=200, limit=100→ Returns records 201-300
Example
Response Format
List endpoints return an array of resources:Fetching All Records
Continue fetching pages until you receive an empty array or fewer records than requested:Best Practice: When fetching all records, add delays between requests to respect rate limits.
Validation Errors
Invalid pagination parameters will return a400 Bad Request error:
| Invalid Request | Error Message |
|---|---|
limit=0 | Input should be greater than or equal to 1 |
limit=-1 | Input should be greater than or equal to 1 |
offset=-1 | Input should be greater than or equal to 0 |
limit > 100 will not return an error. The limit will be silently capped at 100.
Example error response:
Next: Learn about Errors →
