List available filters

GET
/filters

Returns all available filters with their types, operators, and option metadata.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Response Body

application/json

application/json

curl -X GET "https://terac.com/api/external/v2/filters"
{
  "data": [
    {
      "slug": "string",
      "name": "string",
      "type": "string",
      "category": "string",
      "operators": [
        "string"
      ],
      "min": 0,
      "max": 0,
      "options_url": "string"
    }
  ]
}
{
  "code": "string",
  "message": "string",
  "details": [
    {
      "field": "string",
      "message": "string"
    }
  ]
}