How to display the count (number of items) for the facets?

If you're using a facet, Algolia will automatically calculate and send you the count (number of items) for each value of the facet. You can find this information in the JSON answer of a search query.

Each value is associated with its count:

"facets" : {
  "category" : {
    "Movies & TV Shows" : 85,
    "Cell Phones" : 24,
    "Headphones" : 24,
    ...
}

Last updated