Shopify Store Scanner - Theme, Apps & Tech avatar

Shopify Store Scanner - Theme, Apps & Tech

Pricing

$50.00 / 1,000 successful shopify store scans

Go to Apify Store
Shopify Store Scanner - Theme, Apps & Tech

Shopify Store Scanner - Theme, Apps & Tech

Scan any Shopify store and extract public store information including theme, apps, tracking technologies, product signals and social links.

Pricing

$50.00 / 1,000 successful shopify store scans

Rating

0.0

(0)

Developer

rain win

rain win

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

20 hours ago

Last modified

Share

Shopify Store Scanner

Scan any Shopify store and instantly detect its public store information, theme, apps, tracking technologies, social links, contact information, and product signals.

Shopify Store Scanner is a lightweight Apify Actor for Shopify store analysis, competitor research, ecommerce due diligence, and AI-agent workflows. It is not a full Shopify product scraper: it does not crawl every product page, estimate revenue, log in, bypass access controls, or use browser automation.

What It Does

  • Detects whether a public URL appears to be a Shopify store.
  • Extracts store title, meta description, and page language.
  • Detects Shopify.theme name and ID when present.
  • Uses /products.json?limit=250 for a lightweight product count estimate and category hints.
  • Detects common Shopify apps from HTML and script signals: Klaviyo, Judge.me, Gorgias, Yotpo, ReCharge.
  • Detects Meta Pixel, TikTok Pixel, and Google Analytics signals.
  • Extracts Instagram, Facebook, TikTok, and YouTube links.
  • Extracts email and phone from the footer and contact pages.
  • Outputs structured JSON for APIs, n8n, Make, data pipelines, and AI agents.

Key Benefits

  • HTTP-only
  • Fast
  • Low-cost
  • No browser automation
  • No login required
  • Public data only
  • Structured JSON
  • API / n8n / Make / AI Agent friendly

Use Cases

  • Shopify store analyzer for ecommerce research.
  • Shopify theme detector for Shopify agencies and service providers.
  • Shopify app detector for technology and stack research.
  • Shopify technology detector for competitive intelligence.
  • Shopify competitor research for public store benchmarking.
  • Shopify store info enrichment for CRM, lead qualification, and AI agents.
  • Lightweight Shopify scraper alternative when you only need store-level signals, not full product scraping.

Input

{
"url": "https://www.allbirds.com"
}

Output

{
"store_url": "https://www.allbirds.com/",
"is_shopify": true,
"store_info": {
"title": "Allbirds: Comfortable, Sustainable Shoes & Apparel",
"description": "Allbirds: The world’s most comfortable shoes, flats, and clothing made with natural materials like merino wool and eucalyptus. FREE shipping & returns.",
"language": "en-US"
},
"theme": {
"name": "[DNAM Theme July 2026]",
"id": "130450260048"
},
"products": {
"count_estimate": 250,
"categories": [
"Shoes",
"Socks",
"Apparel",
"Underwear"
]
},
"apps": [
"Yotpo"
],
"tracking": {
"meta_pixel": false,
"tiktok_pixel": false,
"google_analytics": false
},
"social_links": [
"https://www.instagram.com/allbirds",
"https://www.facebook.com/weareallbirds",
"https://www.tiktok.com/@weareallbirds",
"https://www.youtube.com/channel/UCnGErLCau5qNJ0Xwe6uEyTw"
],
"contact": {
"email": "help@allbirds.com",
"phone": "+1 (424) 363-8064"
}
}

The Actor writes the result to the default dataset and to key-value store record OUTPUT.

Monetization

The recommended Apify Store pricing model is pay-per-event:

  • Event name: successful-store-scan
  • Billable unit: 1 successful Shopify store scan
  • Recommended MVP price: $0.05 per successful Shopify store scan

The Actor charges only after a result is successfully written and is_shopify is true. Non-Shopify URLs and failed scans are not charged by the custom event.

Limitations

  • This Actor analyzes public store-level signals only.
  • It does not scrape all products or product pages.
  • /products.json?limit=250 provides a lightweight count estimate, not a complete catalog size for large stores.
  • App and tracking detection is based on public HTML/script signals and may miss server-side or hidden integrations.
  • Some stores block public requests, hide metadata, or use custom frontends that expose fewer Shopify signals.
  • It does not estimate revenue, traffic, conversion rate, ad spend, or business performance.

Privacy And Public Data

This Actor only requests publicly accessible web pages and Shopify public JSON endpoints. It does not log in, access private Shopify admin data, bypass paywalls, solve CAPTCHAs, or use residential proxies. Users are responsible for complying with applicable laws and target website terms.

Local Run

npm install
npm run check

For local testing, provide input in storage/key_value_stores/default/INPUT.json:

{
"url": "https://www.allbirds.com"
}

Then run:

$CRAWLEE_STORAGE_DIR=./storage npm start

Apify Deployment

npx apify-cli login
npx apify-cli push --wait-for-finish 0 --json

Store Listing Copy

Short description:

Scan a Shopify store URL and get public store information, theme, apps, tracking technologies, social links, contact details, and product signals as structured JSON.

SEO description:

Shopify Store Scanner is a fast, HTTP-only Shopify store analyzer for detecting public Shopify store data, theme information, installed app signals, tracking technologies, social links, contact information, and product category signals. It is useful for Shopify competitor research, Shopify theme detection, Shopify app detection, ecommerce research, API workflows, n8n, Make, and AI agents.

Suggested categories:

  • Ecommerce
  • Marketing
  • Lead Generation
  • Data Extraction
  • AI

Store Readiness Review

  • Apify Actor spec: uses Actor.main, Actor.getInput, Actor.pushData, Actor.setValue, and Actor.charge.
  • Cost profile: HTTP-only, bounded request count, no browser and no proxy dependency.
  • Maintainability: single-file V0.1 implementation with explicit detection patterns.
  • Monetization: custom pay-per-event event successful-store-scan maps to one successful Shopify store result.