Skip to main content

Discovering what you can filter

Every resource exposes a /help endpoint that returns its filterable attributes, the operators each one accepts, and any enum values. Start there rather than guessing.

Filters

Filters use filter[attribute] syntax. Multiple filters are combined with AND.

Operators

Money values are in minor currency units. Use 1000000 for £10,000.00.
like is a case-insensitive substring match — pass the bare term (filter[title][like]=redesign). Do not add % wildcards; they are not needed.

OR groups

Use or[group] to combine conditions with OR. Filters inside a group are ANDed; the groups themselves are ORed. Group keys are arbitrary as long as they are unique.

Custom fields

Custom fields are filtered with cf[key], and support existence checks alongside the usual operators.
Custom fields work inside OR groups too: or[1][cf][priority]=high&or[2][state]=pending.

Sorting

The sortable attributes for each resource are listed by its /help endpoint.

Pagination

integer
default:"1"
Page number, 1-indexed.
integer
default:"20"
Results per page. Maximum 100.

A worked example

Draft or pending projects over £10,000, newest first: