# Compare Shopify Store Snapshots

**Use case:** 

Analyze two stores in one run for a side-by-side review. Revenue and traffic are estimates; unavailable information is not guaranteed. Runs follow Actor pricing.

## Input

```json
{
  "mode": "analyze",
  "seedStoreUrl": "https://allbirds.com",
  "searchTerms": [
    "organic coffee"
  ],
  "enrichContacts": true,
  "appMatchMode": "any",
  "minMonthlyVisits": 0,
  "minStoreHealth": 0,
  "minOpportunityScore": 0,
  "maxStores": 10,
  "storeUrls": [
    "https://allbirds.com",
    "https://boody.com.au"
  ],
  "conversionRate": 2.5,
  "productSampleSize": 250,
  "reviewsToSalesMultiplier": 30,
  "outputPreset": "full",
  "flatOutput": false,
  "trackChanges": true,
  "extractProducts": true,
  "extractVelocity": true,
  "extractCollections": true,
  "extractSitemap": true,
  "extractTraffic": true,
  "extractRevenueEstimate": true,
  "extractTechStack": true,
  "extractSocials": true,
  "extractContact": true,
  "deepContactCrawl": true,
  "extractShopifyMeta": true,
  "extractInternational": true,
  "extractReviewsAggregate": true,
  "extractPromo": true,
  "extractPolicyDetails": false,
  "extractBrandAge": false,
  "extractDerivedSignals": true,
  "generateComparison": true,
  "maxConcurrency": 5,
  "timeout": 20
}
```

## Output

```json
{
  "domain": {
    "label": "Store domain",
    "format": "string"
  },
  "myshopify_handle": {
    "label": "Shopify handle",
    "format": "string"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "store_health_score": {
    "label": "Store health score (0-100)",
    "format": "number"
  },
  "store_health_tier": {
    "label": "Store maturity tier",
    "format": "string"
  },
  "primary_niche": {
    "label": "Primary niche",
    "format": "string"
  },
  "estimated_brand_age_years": {
    "label": "Brand age (years)",
    "format": "number"
  },
  "product_count_sampled": {
    "label": "Products sampled",
    "format": "number"
  },
  "avg_order_value": {
    "label": "Estimated AOV ($)",
    "format": "number"
  },
  "products_on_sale_pct": {
    "label": "Products on sale (%)",
    "format": "number"
  },
  "customer_segment": {
    "label": "Customer segment",
    "format": "string"
  },
  "dropshipper_risk_bucket": {
    "label": "Dropshipper risk bucket",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Shopify Store Analyzer | Revenue, Traffic & Apps](https://apify.com/apivault_labs/shopify-store-analyzer.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/apivault_labs/shopify-store-analyzer.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/apivault_labs/shopify-store-analyzer.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
