# Find the contact email of a Shopify store

**Use case:** 

Ready-to-run example: hand over store URLs and get the owner-facing contact details back - email, phone and social handles per store.

## Input

```json
{
  "storeUrls": [
    "https://www.deathwishcoffee.com",
    "https://grindgoods.com",
    "https://www.007airsoft.com"
  ],
  "discoverStores": false,
  "maxStores": 50,
  "countries": [],
  "keywords": [],
  "excludeKeywords": [],
  "includeCatalog": false,
  "includeContacts": true,
  "includeTechStack": false,
  "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 Email Scraper - Store Owner Contact Finder](https://apify.com/vonsensey/shopify-email-scraper-store-contact-finder.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/vonsensey/shopify-email-scraper-store-contact-finder.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/vonsensey/shopify-email-scraper-store-contact-finder.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`).
