Skip to main content
GET
/
api
/
filters
/
{key}
/
values
List filter values
curl --request GET \
  --url https://api.example.com/api/filters/{key}/values \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 42,
      "code": "industry/fintech",
      "name": "Fintech",
      "entity_count": 1200,
      "type": "industry"
    },
    {
      "id": 87,
      "code": "industry/financial-services",
      "name": "Financial Services",
      "entity_count": 890,
      "type": "industry"
    }
  ],
  "page": {
    "total": 2,
    "limit": 100,
    "offset": 0
  }
}

Authorizations

Authorization
string
header
required

Auth0 JWT access token

Path Parameters

key
string
required
Example:

"tag_id"

Query Parameters

q
string

Fuzzy search (min 2 chars)

Minimum string length: 2
Example:

"fintech"

type
string

Sub-type filter (e.g. industry for tags, country for locations)

Example:

"industry"

limit
string

Results per page (1-1000, default 100)

Example:

"100"

offset
string
Example:

"0"

include
string

Comma-separated enrichments: geo, description

Example:

"geo"

ids
string

Pipe-separated IDs to always include

Pattern: ^\d+(\|\d+)*$
Example:

"42|123"

Response

Filter values with entity counts

data
object[]
required
page
object
required