# Ecommerce Lead Generation Scraper

**Use case:** 

Build an outreach list of online stores instead of buying one. This example profiles a set of merchant domains and returns the platform, an estimated revenue band, the country and the contact details attached to the store. Drop the export straight into your sequencer and start the conversation with a relevant first line.

## Input

```json
{
  "startUrls": [],
  "domains": [
    "gymshark.com",
    "alphaleteathletics.com",
    "youngla.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`).
