# Search The `search` object provides access to search results, filters, and pagination for the store's search page. ## Usage Example ```liquid {%- comment -%} Render search results with active filters {%- endcomment -%}

{{ search.result_count }} results for "{{ search.search_term }}"

{% for product in search.results %}
{{ product.title }}
{% endfor %} {% if search.active_filters.size > 0 %} {% endif %} ``` ## Properties ### result_count Returns the number of results on the current search page. ### all_results_count Returns the total amount of results for this search. ### results Returns the [products](/reference/liquid/objects/store/product/) matching the current search page. ### search_term Returns the search term entered by the customer. ### filters Returns the available [filters](/reference/liquid/objects/store/filter/) for this search, null if none is set. ### active_filters Returns the active [filters](/reference/liquid/objects/store/filter/) for this search, null if none is set.