> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stockful.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Storefront search

> Storefront search terms: volume, click-through, and the searches shoppers gave up on.

Storefront search terms: volume, click-through, and the searches shoppers gave up on.

## Example

```sql theme={null}
FROM search
  SHOW searches, clicked_searches
  GROUP BY query
  ORDER BY searches DESC
```

## Metrics

| Metric               | Type    | Description                                                     |
| -------------------- | ------- | --------------------------------------------------------------- |
| `searches`           | Number  | Storefront searches over the period.                            |
| `clicked_searches`   | Number  | Searches where the shopper clicked a result.                    |
| `click_through_rate` | Percent | Searches with a clicked result as a percentage of all searches. |

## Dimensions

| Dimension | Description                                   |
| --------- | --------------------------------------------- |
| `query`   | The storefront search term, exactly as typed. |

## Filters

| Filter  | Type | Description                 |
| ------- | ---- | --------------------------- |
| `query` | Text | The storefront search term. |

## Related datasets

* [Storefront traffic](/stockfulql/datasets/traffic)
