Docs
Specification

Specification

AttributeDescriptionType
attributesList of attributes to be returned in the API responseArray of strings
includesAdditional relationships to be included in the responseObject with keys and arrays
filtersFilters to be applied to the resources returned by the APIObject containing filtering criteria
sortField by which the results should be sortedString or null
countIndicates whether the response should include the total count of resourcesBoolean
limitMaximum number of resources to be returned in a single callInteger
pagePage number to be retrievedInteger
searchSearch term to search for resources based on a general search criterionString or null

Filter Operators

The Public API supports a variety of filter operators that can be applied to different data types. These operators make it easier to query and obtain more specific results when making requests involving filters. Below is a list of available operators, organized by data type:

String

  • eq (Equal): Equal to.
  • neq (Not Equal): Not equal to.
  • ilk (Il-like): Similar to a substring.
  • ew (Ends With): Ends with.
  • sw (Starts With): Starts with.

Number

  • eq (Equal): Equal to.
  • neq (Not Equal): Not equal to.
  • gt (Greater Than): Greater than.
  • gte (Greater Than or Equal): Greater than or equal to.
  • lt (Less Than): Less than.
  • lte (Less Than or Equal): Less than or equal to.
  • btw (Between): Within the range (inclusive).
  • nbtw (Not Between): Outside the range.

Boolean

  • eq (Equal): Equal to.
  • neq (Not Equal): Not equal to.

Date

  • eq (Equal): Equal to.
  • neq (Not Equal): Not equal to.
  • gt (Greater Than): Greater than.
  • gte (Greater Than or Equal): Greater than or equal to.
  • lt (Less Than): Less than.
  • lte (Less Than or Equal): Less than or equal to.
  • btw (Between): Within the range (inclusive).
  • nbtw (Not Between): Outside the range.

Enumeration

  • in (In): Value is within the set.
  • nin (Not In): Value is not within the set.

Use these operators when constructing your filters to refine queries and obtain more accurate results.