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

FieldTypeRoleDescription
grainstringdimensionWhich aggregation Shopify computed the row at. Only day exists today — Shopify's dimensions panel for this report offers no other dimension.
sessions_with_searchesnumbermetricOnline store sessions in which a visitor used the search box. The denominator of all three rates below.
search_sessions_with_clicksnumbermetricSearch sessions in which a visitor clicked one of the results.
search_sessions_with_cart_additionsnumbermetricSearch sessions in which a visitor added a product to the cart.
search_sessions_that_completed_checkoutnumbermetricSearch sessions that went on to complete checkout.
search_click_ratepercentmetricShare 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_ratepercentmetricShare of search sessions that added a product to the cart. Blank on a day with no searches.
search_conversion_ratepercentmetricShare of search sessions that completed checkout. Blank on a day with no searches.
storestringdimensionThe shop the record belongs to. Filter with WHERE store IN ('Shop name') or GROUP BY store.
store_idstringdimensionThe shop's raw identifier — what an export or the API reports. Same shops as Store, shown as ids.
store_domainstringdimensionThe shop's myshopify.com domain. Filter with WHERE store_domain = 'shop.myshopify.com'.