# Find Shopify stores and their emails by product keyword

**Use case:** 

Give a product keyword and a country, and get the Shopify stores that sell it, each with its email, phone and social profiles from its own website, and its currency, catalogue size and shipping countries. This example finds US coffee roasters; change the keywords and the country to your own.

## Input

```json
{
  "keywords": [
    "coffee roasters"
  ],
  "country": "US",
  "storeLocation": "based",
  "pagesPerKeyword": 2,
  "minProducts": 1,
  "maxContactPages": 5,
  "validateEmails": true,
  "includeSocials": true,
  "renderJs": "off",
  "proxyConfiguration": {
    "useApifyProxy": false
  },
  "proxyFallback": true
}
```

## Output

```json
{
  "name": {
    "label": "Store",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "best_email": {
    "label": "Best email",
    "format": "text"
  },
  "emails": {
    "label": "Emails",
    "format": "array"
  },
  "phones": {
    "label": "Phones",
    "format": "array"
  },
  "socials": {
    "label": "Social profiles",
    "format": "object"
  },
  "country_code": {
    "label": "Country",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "products_count": {
    "label": "Products",
    "format": "number"
  },
  "ships_to": {
    "label": "Ships to",
    "format": "array"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "billed": {
    "label": "Billed",
    "format": "boolean"
  },
  "search_string": {
    "label": "Keyword",
    "format": "text"
  },
  "rank": {
    "label": "Google position",
    "format": "number"
  },
  "myshopify_domain": {
    "label": "myshopify domain",
    "format": "text"
  },
  "province": {
    "label": "Region",
    "format": "text"
  },
  "description": {
    "label": "Store description",
    "format": "text"
  },
  "faxes": {
    "label": "Faxes (not billed)",
    "format": "array"
  },
  "email_count": {
    "label": "Emails found",
    "format": "number"
  },
  "pages_crawled": {
    "label": "Pages read",
    "format": "number"
  },
  "rendered": {
    "label": "Rendered in a browser",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [Shopify Store Leads & Emails](https://apify.com/sandy_yclept/shopify-store-leads.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sandy_yclept/shopify-store-leads.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/sandy_yclept/shopify-store-leads.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`).
