Skip to main content
GET
/
api
/
filters
Discover available filters
curl --request GET \
  --url https://api.example.com/api/filters \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "key": "tag_id",
      "label": "Tags",
      "type": "id_lookup",
      "category": "Sectors",
      "operators": [
        "eq",
        "neq",
        "in_any",
        "in_all",
        "nin_any",
        "nin_all"
      ],
      "supports_type_filter": true,
      "sub_types": [
        {
          "key": "industry",
          "label": "Industries"
        },
        {
          "key": "technology",
          "label": "Technologies"
        },
        {
          "key": "sector",
          "label": "Sectors"
        }
      ]
    },
    {
      "key": "launch_date",
      "label": "Founded Year",
      "type": "date",
      "category": "Company Info",
      "operators": [
        "gte",
        "lte",
        "between"
      ]
    },
    {
      "key": "is_vc_backed",
      "label": "VC Backed",
      "type": "boolean",
      "category": "Funding",
      "operators": [
        "eq"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Auth0 JWT access token

Query Parameters

scope
enum<string>
required

Required. One of: companies, investors, transactions, people, universities, news

Available options:
companies,
investors,
transactions,
people,
universities,
news
Example:

"companies"

Response

200 - application/json

Available filters with category metadata

data
object[]
required