Skip to main content

Querying

The API supports pagination, filters, and sorting.

Pagination

  • page (default 1)
  • limit (default 50, max 200)

Common Filters

  • active
  • from and to (YYYY-MM-DD)
  • query

Sorting

  • sortBy
  • sortOrder (asc or desc)

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