List endpoints support filtering, sorting, and eager loading of related data to help you retrieve exactly the data you need.Documentation Index
Fetch the complete documentation index at: https://docs.provisionr.io/llms.txt
Use this file to discover all available pages before exploring further.
Filtering
Use bracket-style query parameters to filter results by specific fields.Match Types
Filters support two match types depending on the field suffix.| Suffix | Match Type | Example | Description |
|---|---|---|---|
filter[field] | Exact | filter[state]=active | Returns only exact matches |
filter[field_search] | Partial | filter[name_search]=mur | Returns results containing the value |
Date Range Filters
Use_before and _after suffixes to filter by date ranges.
| Filter | Description |
|---|---|
filter[created_before] / filter[created_after] | Filter by creation date |
filter[updated_before] / filter[updated_after] | Filter by last update date |
filter[expires_before] / filter[expires_after] | Filter by expiration date |
filter[deleted_before] / filter[deleted_after] | Filter by deletion date |
Soft Delete Visibility
Resources that support soft deletes can be filtered with thetrashed parameter.
| Value | Description |
|---|---|
filter[trashed]=without | Exclude soft-deleted records (default) |
filter[trashed]=with | Include soft-deleted records |
filter[trashed]=only | Return only soft-deleted records |
Sorting
Use thesort query parameter to order results. Prefix a field with - to sort in descending order.
Available sort fields vary by endpoint. Check the endpoint documentation for the list of supported sort options.
Includes
Use theinclude query parameter to eager load related data alongside the primary resource.
| Suffix | Description |
|---|---|
include=relation | Load the full related data |
include=relation-count | Include a count of related records |
include=relation-exists | Include a boolean indicating if related records exist |
Available includes vary by endpoint. Check the endpoint documentation for the list of supported include options.