Guides
Filtering & Searching Data
Many Cineamo API endpoints support filtering to help you retrieve specific data.
Query Parameters
Filters are applied using query parameters in the URL.
Example
Code
Common Filter Parameters
Date Filters
Filter by date ranges using ISO 8601 format:
Code
Status Filters
Filter by resource status:
Code
Search Filters
Search across multiple fields:
Code
Sorting
Sort results using the sort parameter:
Code
Filter Operators
Some endpoints support advanced filter operators:
| Operator | Description | Example |
|---|---|---|
eq | Equal to | ?price[eq]=10 |
ne | Not equal to | ?status[ne]=inactive |
gt | Greater than | ?price[gt]=10 |
gte | Greater than or equal | ?price[gte]=10 |
lt | Less than | ?price[lt]=100 |
lte | Less than or equal | ?price[lte]=100 |
in | In array | ?genre[in]=action,comedy |
nin | Not in array | ?genre[nin]=horror |
Combining Filters
You can combine multiple filters:
Code
Filter Examples by Endpoint
Movies
Code
Showtimes
Code
Orders
Code
Best Practices
- Use specific filters to reduce response size and improve performance
- Combine with pagination for large result sets
- Validate filter values before making requests
- Check endpoint documentation for supported filters
- Cache filtered results when appropriate
Last modified on

