Skip to main content
Certain list endpoints support filtering via the filter query parameter. Filter availability depends on the specific endpoint.

Syntax

?filter=<field><operator><value>
PartDescription
fieldThe field to filter on (varies by endpoint).
operatorThe comparison operator.
valueThe value to compare against.

Operators

Since operators are not URL-safe, use the encoded values unless your HTTP client handles URL encoding automatically.
OperatorSymbolURL-encoded
Equals=%3D
Greater than>%3E
Less than<%3C

Example

Filter affiliates to only return those with an active account status:
curl -H "X-Eflow-API-Key: <your-api-key>" \
  "https://api.eflow.team/v1/networks/affiliates?filter=account_status%3Dactive"
Multiple filters can be combined by repeating the filter parameter.