Search for facet values

Searches for values of a specified facet attribute.

  • By default, facet values are sorted by decreasing count. You can adjust this with the sortFacetValueBy parameter.
  • Searching for facet values doesn’t work if you have more than 65 searchable facets and searchable attributes combined.

Usage

Required ACL: search
1
2
3
4
5
6
7
8
9
10
from algoliasearch.search.client import SearchClientSync
from json import loads

# In an asynchronous context, you can use SearchClient instead, which exposes the exact same methods.
client = SearchClientSync("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY")

response = client.search_for_facet_values(
    index_name="ALGOLIA_INDEX_NAME",
    facet_name="facetName",
)
Did you find this page helpful?
Python API clients v4