# Shopify Store Analyzer | $10/1K | Revenue, Traffic, Tech Stack (`apivault_labs/shopify-store-analyzer`) Actor

Spy on any Shopify store: traffic, estimated monthly revenue, product velocity, best sellers, tech stack (Klaviyo, Judge.me, ReCharge), social links, contact info. Perfect for dropshippers and competitor research.

- **URL**: https://apify.com/apivault\_labs/shopify-store-analyzer.md
- **Developed by:** [Apivault Labs](https://apify.com/apivault_labs) (community)
- **Categories:** E-commerce, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $10.00 / 1,000 store analyzeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Shopify Store Analyzer

Spy on any Shopify store. Get traffic, estimated monthly revenue, product velocity, tech stack, and contact info — in one API call.

### Pricing

**$10 per 1000 stores** — pay-per-event per store analyzed.

### What you get

For each Shopify store:

#### Traffic & revenue (via SimilarWeb public API)
- `monthly_visits` — estimated visitors last month
- `monthly_visits_trend` — 3 months history
- `global_rank`, `country_rank`, `category_rank`
- `bounce_rate`, `page_per_visit`, `avg_time_on_site_s`
- `top_countries` — geographic breakdown
- `traffic_sources` — % search / social / paid / direct / mail
- `top_keywords` — with search volume and CPC
- **`revenue_estimate.monthly_revenue_usd_est`** = visits × conversion_rate × AOV

#### Products
- `product_count_sampled`
- `price_min`, `price_max`, `price_median`
- `avg_order_value` — median price × 1.5 (industry heuristic)
- `new_products_7d`, `new_products_30d`, `new_products_90d` — velocity signals
- `likely_best_sellers` — top 5 products by image count (hero SKUs usually have 5-10+ photos)

#### Collections
- `collections_count`
- `top_collections` — ranked by product count

#### Tech stack
Detects 50+ Shopify apps and integrations:
- Reviews: Judge.me, Yotpo, Loox, Stamped, Okendo
- Email/SMS: Klaviyo, Mailchimp, Omnisend, Attentive, Postscript
- Subscriptions: ReCharge, Bold, Smile.io
- Support: Gorgias, Tidio, Intercom, Drift
- Page builders: Shogun, GemPages, PageFly
- Dropshipping: Oberlo, Dsers, AutoDS, Printful
- Pixels: Facebook, TikTok, Pinterest, Snapchat, Google
- Payments: Shop Pay, Apple Pay, Afterpay, Klarna, Sezzle, Affirm

#### Social & contact
- `socials` — Instagram, Facebook, Twitter, TikTok, YouTube, Pinterest, LinkedIn
- `emails` — public emails from homepage
- `phones` — public phone numbers

#### Shopify meta
- `myshopify_handle` — the `xxxx.myshopify.com` subdomain
- `currency`, `locale`, `theme_name`
- `likely_shopify_plus` — detected from HTML markers

### Input

```json
{
    "storeUrls": ["https://allbirds.com", "gymshark.com"],
    "conversionRate": 2.5,
    "productSampleSize": 250
}
````

- `storeUrls` — any Shopify store URL (or bare domain)
- `conversionRate` — used in revenue formula (default 2.5%, Shopify industry average)
- `productSampleSize` — 0 = full catalog, default 250

### How it works

All sources are **public and free**, no API keys:

1. **`/products.json`** — Shopify's public catalog API (works on every Shopify store)
2. **`/collections.json`** — public collection metadata
3. **Homepage HTML** — parsed for tech stack signatures, socials, meta tags, Shopify globals
4. **SimilarWeb public API** — `https://data.similarweb.com/api/v1/data?domain=...` (undocumented but stable)

Revenue estimate uses the industry-standard formula:

```
estimated_revenue = monthly_visits × conversion_rate × AOV
```

Where AOV = median\_price × 1.5 items\_per\_order.

### Use cases

- **Dropshipping** — spy on competitors before copying their niche
- **SaaS sales** — find Shopify stores using (or NOT using) your integration
- **Agency prospecting** — pitch website redesign to stores with old themes
- **Competitor research** — track tech stack changes over time
- **Investor DD** — verify claimed revenue of a Shopify DTC brand

### Notes

- SimilarWeb data is estimated (±30% accuracy for stores with < 100K visits)
- Revenue estimate is an approximation; real revenue depends on actual CR and repeat rate
- Small stores (< 1000 monthly visits) often have no SimilarWeb data

# Actor input Schema

## `storeUrls` (type: `array`):

List of Shopify store homepages. Accepts:
• https://allbirds.com
• allbirds.com (bare domain)
• https://shop.company.com

## `conversionRate` (type: `number`):

Used in estimated monthly revenue = traffic × conversionRate × AOV. Industry average for Shopify is 2.5%. Fashion/beauty 1.5-2%, electronics 1%, high-intent niches 3-4%.

## `productSampleSize` (type: `integer`):

How many products to sample for metrics (AOV, price range, velocity). Larger = more accurate but slower. 0 = full catalog.

## `extractProducts` (type: `boolean`):

Product count, AOV (average order value), price range, currency.

## `extractVelocity` (type: `boolean`):

New products added in last 7/30/90 days. High velocity = active store, replaces inventory fast.

## `extractCollections` (type: `boolean`):

Collection count and top collections by product count.

## `extractTraffic` (type: `boolean`):

Estimated monthly visits, global/country rank, bounce rate, page per visit, traffic sources, top countries, top keywords. THIS is what dropshippers pay for.

## `extractRevenueEstimate` (type: `boolean`):

Compute estimated monthly revenue from traffic × conversionRate × AOV. Requires extractTraffic.

## `extractTechStack` (type: `boolean`):

Detect Klaviyo, Judge.me, Yotpo, Loox, ReCharge, Bold apps, payment methods, pixels (FB, TikTok, Pinterest), analytics.

## `extractSocials` (type: `boolean`):

Instagram, Facebook, Twitter/X, TikTok, YouTube, Pinterest, LinkedIn URLs extracted from homepage.

## `extractContact` (type: `boolean`):

Public emails and phone numbers from homepage / contact / footer.

## `extractShopifyMeta` (type: `boolean`):

myshopify.com handle, locale, theme name, Shopify Plus indicators.

## `maxConcurrency` (type: `integer`):

Parallel stores to analyze.

## `timeout` (type: `integer`):

HTTP timeout per request.

## Actor input object example

```json
{
  "storeUrls": [
    "https://allbirds.com",
    "https://gymshark.com"
  ],
  "conversionRate": 2.5,
  "productSampleSize": 250,
  "extractProducts": true,
  "extractVelocity": true,
  "extractCollections": true,
  "extractTraffic": true,
  "extractRevenueEstimate": true,
  "extractTechStack": true,
  "extractSocials": true,
  "extractContact": true,
  "extractShopifyMeta": true,
  "maxConcurrency": 3,
  "timeout": 30
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "storeUrls": [
        "https://allbirds.com",
        "https://gymshark.com"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("apivault_labs/shopify-store-analyzer").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "storeUrls": [
        "https://allbirds.com",
        "https://gymshark.com",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("apivault_labs/shopify-store-analyzer").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "storeUrls": [
    "https://allbirds.com",
    "https://gymshark.com"
  ]
}' |
apify call apivault_labs/shopify-store-analyzer --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=apivault_labs/shopify-store-analyzer",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Shopify Store Analyzer | $10/1K | Revenue, Traffic, Tech Stack",
        "description": "Spy on any Shopify store: traffic, estimated monthly revenue, product velocity, best sellers, tech stack (Klaviyo, Judge.me, ReCharge), social links, contact info. Perfect for dropshippers and competitor research.",
        "version": "1.0",
        "x-build-id": "CcBTmya3dw2ehDsFU"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/apivault_labs~shopify-store-analyzer/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-apivault_labs-shopify-store-analyzer",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/apivault_labs~shopify-store-analyzer/runs": {
            "post": {
                "operationId": "runs-sync-apivault_labs-shopify-store-analyzer",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/apivault_labs~shopify-store-analyzer/run-sync": {
            "post": {
                "operationId": "run-sync-apivault_labs-shopify-store-analyzer",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "storeUrls"
                ],
                "properties": {
                    "storeUrls": {
                        "title": "Shopify Store URLs",
                        "type": "array",
                        "description": "List of Shopify store homepages. Accepts:\n• https://allbirds.com\n• allbirds.com (bare domain)\n• https://shop.company.com",
                        "items": {
                            "type": "string"
                        }
                    },
                    "conversionRate": {
                        "title": "Conversion rate for revenue estimate (%)",
                        "minimum": 0.1,
                        "maximum": 10,
                        "type": "number",
                        "description": "Used in estimated monthly revenue = traffic × conversionRate × AOV. Industry average for Shopify is 2.5%. Fashion/beauty 1.5-2%, electronics 1%, high-intent niches 3-4%.",
                        "default": 2.5
                    },
                    "productSampleSize": {
                        "title": "Product sample size",
                        "minimum": 10,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "How many products to sample for metrics (AOV, price range, velocity). Larger = more accurate but slower. 0 = full catalog.",
                        "default": 250
                    },
                    "extractProducts": {
                        "title": "Products & AOV",
                        "type": "boolean",
                        "description": "Product count, AOV (average order value), price range, currency.",
                        "default": true
                    },
                    "extractVelocity": {
                        "title": "Product velocity",
                        "type": "boolean",
                        "description": "New products added in last 7/30/90 days. High velocity = active store, replaces inventory fast.",
                        "default": true
                    },
                    "extractCollections": {
                        "title": "Collections",
                        "type": "boolean",
                        "description": "Collection count and top collections by product count.",
                        "default": true
                    },
                    "extractTraffic": {
                        "title": "Traffic (via SimilarWeb public API)",
                        "type": "boolean",
                        "description": "Estimated monthly visits, global/country rank, bounce rate, page per visit, traffic sources, top countries, top keywords. THIS is what dropshippers pay for.",
                        "default": true
                    },
                    "extractRevenueEstimate": {
                        "title": "Revenue estimate",
                        "type": "boolean",
                        "description": "Compute estimated monthly revenue from traffic × conversionRate × AOV. Requires extractTraffic.",
                        "default": true
                    },
                    "extractTechStack": {
                        "title": "Tech stack",
                        "type": "boolean",
                        "description": "Detect Klaviyo, Judge.me, Yotpo, Loox, ReCharge, Bold apps, payment methods, pixels (FB, TikTok, Pinterest), analytics.",
                        "default": true
                    },
                    "extractSocials": {
                        "title": "Social links",
                        "type": "boolean",
                        "description": "Instagram, Facebook, Twitter/X, TikTok, YouTube, Pinterest, LinkedIn URLs extracted from homepage.",
                        "default": true
                    },
                    "extractContact": {
                        "title": "Contact info",
                        "type": "boolean",
                        "description": "Public emails and phone numbers from homepage / contact / footer.",
                        "default": true
                    },
                    "extractShopifyMeta": {
                        "title": "Shopify meta",
                        "type": "boolean",
                        "description": "myshopify.com handle, locale, theme name, Shopify Plus indicators.",
                        "default": true
                    },
                    "maxConcurrency": {
                        "title": "Max Concurrency",
                        "minimum": 1,
                        "maximum": 10,
                        "type": "integer",
                        "description": "Parallel stores to analyze.",
                        "default": 3
                    },
                    "timeout": {
                        "title": "Timeout (seconds)",
                        "minimum": 10,
                        "maximum": 180,
                        "type": "integer",
                        "description": "HTTP timeout per request.",
                        "default": 30
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
