# Shopify Tech Stack Scraper

**Use case:** 

Find out what an online store actually runs under the hood. This example returns the technologies and apps detected on each domain, next to the platform, estimated revenue band and country. App developers use it to find stores already running a competing tool, which is the shortest path to a switching conversation.

## Input

```json
{
  "startUrls": [],
  "domains": [
    "allbirds.com",
    "bombas.com"
  ],
  "maxItems": 50,
  "maxPages": 10,
  "requestTimeout": 30,
  "debugMode": false
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "name": {
    "label": "Store Name",
    "format": "text"
  },
  "platform": {
    "label": "Platform",
    "format": "text"
  },
  "countryCode": {
    "label": "Country",
    "format": "text"
  },
  "storeState": {
    "label": "Status",
    "format": "text"
  },
  "estimatedVisits": {
    "label": "Monthly Visits",
    "format": "number"
  },
  "estimatedSales": {
    "label": "Est. Monthly Sales",
    "format": "number"
  },
  "employeeCount": {
    "label": "Employees",
    "format": "number"
  },
  "productCount": {
    "label": "Products",
    "format": "number"
  },
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Store Leads Scraper | Shopify Data](https://apify.com/silentflow/storeleads-scraper-ppe.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/silentflow/storeleads-scraper-ppe.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/silentflow/storeleads-scraper-ppe.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`).
