Look up report filter values
POST/v2/reports/filter-values
Returns the available values for a filterable attribute — use it to build valid filters rules for POST /v2/reports/query.
Works for attributes whose values live in your workspace data (tags, teammates, teams, companies, plans, countries, …). Attributes with staticOptions in the catalog don’t need this endpoint — their value set is already inline.
querynarrows results by search stringselectedValuesresolves labels for values you already hold (returned alongside search results)
Example
{ "fieldId": "conversation.tags", "query": "bill", "limit": 20 }
Version Availability
This endpoint is only available in API version 2026-01-01.nova and newer, and only for workspaces with the Reports product enabled (404 otherwise).
Look up report filter values
curl https://do.featurebase.app/v2/reports/filter-values \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $FEATUREBASE_API_KEY" \
-d '{
"fieldId": "conversation.tags",
"query": "bill"
}'{
"data": [
{
"label": "label",
"value": "value"
}
],
"object": "list"
}Returns Examples
{
"data": [
{
"label": "label",
"value": "value"
}
],
"object": "list"
}