Searches

What visitors type into the storefront search box — every query by day, with whether results came back and which search surface it hit, as Shopify records it. Requires the read_reports scope; empty on stores that have not granted it.

11 fields — 10 dimensions, 1 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 searches
  SHOW 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 the row was fetched at. Only day_query exists today.
search_querystringdimensionThe raw text a visitor typed into the storefront search box, verbatim.
search_query_intentstringdimensionShopify's intent reading of the query. On the probed store it echoes the raw query — stored verbatim, never interpreted.
search_results_were_returnedbooleandimensionWhether the search produced any results.
is_product_search_querybooleandimensionWhether the query ran against product search.
is_article_search_querybooleandimensionWhether the query ran against article search.
is_page_search_querybooleandimensionWhether the query ran against page search.
searchesnumbermetricNumber of storefront searches. Additive — proven by re-aggregation against Shopify's own totals — so any window and any grouping is a plain sum.
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'.