Shopify Theme Detector avatar

Shopify Theme Detector

Pricing

from $1.00 / 1,000 result storeds

Go to Apify Store
Shopify Theme Detector

Shopify Theme Detector

A powerful Apify Actor that detects the active Shopify theme from any store URL — extracting theme name, version, schema, and Theme Store origin. Only charges for successful extractions.

Pricing

from $1.00 / 1,000 result storeds

Rating

5.0

(1)

Developer

Applora

Applora

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Detect the active theme on any Shopify storefront. Given one or more store URLs, the actor fetches each page, checks for Shopify signals, and returns fully flattened theme metadata.

You are only charged for URLs where theme data was successfully extracted. URLs that are not Shopify stores, or Shopify stores using a fully custom theme, are recorded in the run stats but do not count toward your usage.

Features

  • Shopify Detection: Identifies Shopify stores by the presence of cdn.shopify.com in the page HTML
  • Theme Metadata: Extracts theme name, ID, schema name, schema version, role, and theme store ID
  • Theme Style: Captures the active style variant (theme_style_id and theme_style_handle)
  • Theme Store Flag: Reports is_theme_store_theme — whether the theme originates from the public Shopify Theme Store
  • Custom Theme Handling: Shopify stores that use a fully custom theme (no standard Shopify script) are detected as Shopify but skipped from results and logged in stats

Input

FieldTypeRequiredDefaultDescription
urlsarrayYesStore URLs to check, e.g. ["https://allbirds.com"]
maxItemsintegerNo100Maximum number of URLs to process

Output

Dataset

Only URLs where theme data was successfully extracted (theme_detected: true) appear in the dataset.

{
"url": "https://allbirds.com",
"handle": "allbirds",
"locale": "en",
"theme_name": "Horizon",
"theme_id": 141419118701,
"theme_schema_name": "Horizon",
"theme_schema_version": "3.2.1",
"theme_store_id": 2481,
"theme_role": "main",
"theme_handle": "horizon",
"theme_style_id": null,
"theme_style_handle": null,
"is_theme_store_theme": true,
"scraped_at": "2025-06-29T10:00:00.000Z"
}
FieldTypeDescription
urlstringThe input URL
handlestring | nullStore subdomain, e.g. allbirds (from allbirds.myshopify.com)
localestring | nullActive store locale, e.g. en
theme_namestring | nullDisplay name of the active theme
theme_idnumber | nullShopify internal theme ID
theme_schema_namestring | nullTheme schema name (may differ from display name for customised themes)
theme_schema_versionstring | nullSemantic version of the theme schema, e.g. 3.2.1
theme_store_idnumber | nullTheme Store listing ID; null for custom or private themes
theme_rolestring | nullTheme role, typically main
theme_handlestring | nullURL handle of the theme in the Theme Store; null if not from Theme Store
theme_style_idnumber | nullActive style variant ID
theme_style_handlestring | nullActive style variant handle
is_theme_store_themeboolean | nulltrue if the theme originates from the public Shopify Theme Store
scraped_atstringISO 8601 timestamp of when the URL was scraped

Stats (Key-Value Store)

After each run, a stats record is saved to the key-value store with a full breakdown of all processed URLs:

{
"total": 10,
"succeeded": 6,
"failed": 1,
"not_shopify": ["https://wordpress-site.com", "https://not-a-store.com"],
"shopify_no_theme": ["https://headless-shopify-store.com"]
}
FieldDescription
totalTotal number of URLs processed
succeededURLs where theme data was extracted and saved to the dataset
failedURLs that could not be fetched (network errors, HTTP errors, etc.)
not_shopifyURLs with no cdn.shopify.com signal — not identified as Shopify stores
shopify_no_themeConfirmed Shopify stores where the theme script could not be parsed (custom/headless themes)

Usage Examples

Detect theme for a single store

{
"urls": ["https://allbirds.com"]
}

Batch detect themes for multiple stores

{
"urls": ["https://allbirds.com", "https://gymshark.com", "https://fashionnova.com"],
"maxItems": 50
}