Search conversions
The storefront search funnel by day — sessions that searched, and how many of them clicked a result, added to cart and completed checkout, as Shopify measures it. Requires the read_reports scope; empty on stores that have not granted it.
11 fields — 4 dimensions, 7 metrics. Date clauses (SINCE, UNTIL, DURING) use day.
The live, authoritative list is always GET /v1/datasets — this page is regenerated from the same catalog, but the endpoint reflects exactly what is deployed.
Query it
FROM search_conversions
SHOW sessions_with_searches
GROUP BY grain
SINCE -30d
See Querying with SoloQL for the language.
This dataset is queryable through SoloQL; it has no record-retrieval endpoint.
Fields
| Field | Type | Role | Description |
|---|---|---|---|
grain | string | dimension | Which aggregation Shopify computed the row at. Only day exists today — Shopify's dimensions panel for this report offers no other dimension. |
sessions_with_searches | number | metric | Online store sessions in which a visitor used the search box. The denominator of all three rates below. |
search_sessions_with_clicks | number | metric | Search sessions in which a visitor clicked one of the results. |
search_sessions_with_cart_additions | number | metric | Search sessions in which a visitor added a product to the cart. |
search_sessions_that_completed_checkout | number | metric | Search sessions that went on to complete checkout. |
search_click_rate | percent | metric | Share of search sessions in which a result was clicked. Blank on a day with no searches — an unmeasured day, not a 0% one. |
search_added_to_cart_rate | percent | metric | Share of search sessions that added a product to the cart. Blank on a day with no searches. |
search_conversion_rate | percent | metric | Share of search sessions that completed checkout. Blank on a day with no searches. |
store | string | dimension | The shop the record belongs to. Filter with WHERE store IN ('Shop name') or GROUP BY store. |
store_id | string | dimension | The shop's raw identifier — what an export or the API reports. Same shops as Store, shown as ids. |
store_domain | string | dimension | The shop's myshopify.com domain. Filter with WHERE store_domain = 'shop.myshopify.com'. |