Skip to main content
All list endpoints in the Ruddr API use cursor-based pagination and return results in a common response format.

Response Format

List endpoints return a wrapper object:

Pagination

Query Parameters

startingAfter and endingBefore are mutually exclusive — only one can be used per request. Omitting both returns results from the beginning.

Iterating Through Pages

To fetch all results, use the id of the last item in each response as the startingAfter cursor for the next request. Continue until hasMore is false. First page:
Next page (using the last id from the previous response):
Previous page (using the first id from the current response):

Sorting

All list endpoints return results sorted by createdAt in descending order (newest first). The sort order is not configurable — there are no sort or orderBy parameters.

Filtering

Most list endpoints accept query parameters to narrow results. Available filters vary by endpoint and are documented in the API Reference.

Filter Types

String matching filters are case-insensitive. Date filters use YYYY-MM-DD format.

Example

Fetch the first page of active projects for a specific client:
Combine filtering with pagination to iterate through the results: