# Qualify a list of Shopify stores

**Use case:** 

Ready-to-run example: three store URLs in, full lead records out - contact email, catalogue size, price band, theme and installed apps.

## Input

```json
{
  "storeUrls": [
    "https://www.allbirds.com",
    "https://www.deathwishcoffee.com",
    "https://kith.com"
  ],
  "discoverStores": false,
  "maxStores": 25,
  "countries": [],
  "keywords": [],
  "excludeKeywords": [],
  "includeCatalog": true,
  "includeContacts": true,
  "includeTechStack": true,
  "includeLaunchDate": false,
  "maxConcurrency": 10,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "name": {
    "label": "Store",
    "format": "text"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "storeUrl": {
    "label": "URL",
    "format": "link"
  },
  "myshopifyDomain": {
    "label": "myshopify domain",
    "format": "text"
  },
  "storeId": {
    "label": "Shop ID",
    "format": "number"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "province": {
    "label": "Region",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "productCount": {
    "label": "Products",
    "format": "number"
  },
  "collectionCount": {
    "label": "Collections",
    "format": "number"
  },
  "sizeBand": {
    "label": "Size",
    "format": "text"
  },
  "isActive": {
    "label": "Active",
    "format": "boolean"
  },
  "daysSinceLastProduct": {
    "label": "Days since last product",
    "format": "number"
  },
  "newestProductAt": {
    "label": "Last product",
    "format": "date"
  },
  "oldestPublishedProductAt": {
    "label": "Oldest product",
    "format": "date"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "emails": {
    "label": "All emails",
    "format": "array"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "socials": {
    "label": "Socials",
    "format": "object"
  },
  "themeName": {
    "label": "Theme",
    "format": "text"
  },
  "themeStoreId": {
    "label": "Theme Store ID",
    "format": "number"
  },
  "apps": {
    "label": "Apps",
    "format": "array"
  },
  "priceMin": {
    "label": "Min price",
    "format": "number"
  },
  "priceMax": {
    "label": "Max price",
    "format": "number"
  },
  "priceAverage": {
    "label": "Avg price",
    "format": "number"
  },
  "vendors": {
    "label": "Vendors",
    "format": "array"
  },
  "productTypes": {
    "label": "Product types",
    "format": "array"
  },
  "shipsToCountries": {
    "label": "Ships to",
    "format": "array"
  },
  "offersShopPayInstallments": {
    "label": "Shop Pay instalments",
    "format": "boolean"
  },
  "cardBrands": {
    "label": "Cards",
    "format": "array"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "moneyFormat": {
    "label": "Money format",
    "format": "text"
  },
  "discoveredVia": {
    "label": "Found via",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "type": {
    "label": "Row type",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Shopify Store Leads Scraper - Emails, Apps & Store Size](https://apify.com/vonsensey/shopify-store-leads-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/vonsensey/shopify-store-leads-scraper) to learn more, explore other use cases, and run it yourself.


## 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.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

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

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).
