Querying
The API supports pagination, filters, and sorting.
Pagination
page(default1)limit(default50, max200)
Common Filters
activefromandto(YYYY-MM-DD)query
Sorting
sortBysortOrder(ascordesc)
Field Selection
List endpoints accept fields as a comma-separated list of top-level response fields. Use it to reduce payload size when you only need a small set of columns.
For example, fields=id,status,value returns only those fields when they are present on each row.
Example
GET /api/open/v1/projects?from=2026-01-01&to=2026-01-31&active=true&page=1&limit=50&fields=id,name,active