# search

> The search Liquid object in a Shoplazza theme, which carries the current storefront search query and its results, with the full list of its properties.

Information about a storefront search query.

To learn about storefront search and how to include it in your theme, refer to [Storefront search](/docs/theme/theme-features/site-navigation-and-search/storefront-search/).

| Properties      | Type                                            | Description                                                                    |
| :-------------- | :---------------------------------------------- | :----------------------------------------------------------------------------- |
| `performed`     | [boolean](../basics/liquid-types#boolean)           | Returns `true` if a search was successfully performed. Returns `false` if not. |
| `results`       |                                                 | The search result items. It contains a product list and product count.         |
| `results_count` | [number](../basics/liquid-types#number)             | The number of results.                                                         |
| `terms`         | [string](../basics/liquid-types#string)             | The entered search terms.                                                      |
| `types`         | an array of [string](../basics/liquid-types#string) | The object types that the search was performed on.                             |

```json title="Object"
{
  "performed": true,
  "types": [
    "product"
  ],
  "terms": "1",
  "results_count": 76,
  "results": {
    "products": [],
    "products_count": 76
  }
}
```
