Shop product impressions

How often your products were seen on the Shop channel, day by day, as Shopify measures it. Requires the read_reports scope; empty on stores that have not granted it or that do not sell through Shop.

5 fields — 4 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 shop_product_impressions
  SHOW shop_product_impressions
  GROUP BY day
  SINCE -30d

See Querying with SoloQL for the language.

This dataset is queryable through SoloQL; it has no record-retrieval endpoint.

Fields

FieldTypeRoleDescription
shop_product_impressionsnumbermetricProduct impressions on the Shop channel. Plain event counts — they sum cleanly across days and stores.
daydatedimensionThe impression day — Shopify's shop-timezone calendar label, stamped as UTC midnight.
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'.