# Shopify App Store Developer Leads (`scrapemint/shopify-app-developer-leads`) Actor

Name-match the Shopify App Store sitemap by keyword and turn apps into B2B leads: developer support email, developer name and partner page, company website, app name, rating, reviews, and pricing. One lead per app. No API key.

- **URL**: https://apify.com/scrapemint/shopify-app-developer-leads.md
- **Developed by:** [Ken M](https://apify.com/scrapemint) (community)
- **Categories:** Business, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

Pay per event

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

- **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 usage examples, see the [API](#api) section below.

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

# README

## Shopify App Store Developer Leads

Turn the Shopify App Store into a B2B lead list. Search by keyword and get, for every app, the developer's **public support email**, developer name and partner page, company website, app name, rating, review count, and pricing. One lead per app.

Shopify app developers are a captive market for tooling, agencies, and review/ASO services. The support email is published on the listing, so leads are reachable with no guessing and no API key.

### Who buys this

- **Tool and SDK vendors** selling to Shopify app developers.
- **Agencies** offering development, design, and ASO to app makers.
- **App review, localization, and marketing services.**

### How it works

1. It loads the App Store sitemap (all app handles) and name-matches your keywords, prioritising exact and prefix matches.
2. It opens each app page and extracts the developer support email, developer name, company website, rating, reviews, and pricing.
3. Each app is scored and tiered, then pushed as one lead.

### Output

One row per app:

```json
{
  "name": "Klaviyo: Email Marketing & SMS",
  "handle": "klaviyo-email-marketing",
  "url": "https://apps.shopify.com/klaviyo-email-marketing",
  "developerName": "Klaviyo",
  "partnerUrl": "https://apps.shopify.com/partners/klaviyo",
  "supportEmail": "support@klaviyo.com",
  "website": "https://klaviyo.com",
  "rating": 4.7,
  "reviewCount": 2915,
  "pricing": "Free to install",
  "tier": "qualified_lead"
}
```

### Tiers and pricing

Pay per lead. The first 10 `qualified_lead` per run are free so you can validate output.

| Tier | Meaning | Price |
| --- | --- | --- |
| `listing` | App data, no public email or website | $0.01 |
| `lead` | A public support email or a company website | $0.02 |
| `qualified_lead` | A support email and reviews at or above the bar | $0.05 |

Discovery is the keyless sitemap and app pages are light HTML, so runs are fast and a single run can return thousands of leads.

### Input

| Field | Default | Notes |
| --- | --- | --- |
| `keywords` | `[]` | Terms matched against app handles. |
| `maxLeads` | `200` | Cap total leads per run. |
| `maxPerKeyword` | `80` | Apps per keyword (exact/prefix first). |
| `minReviews` | `0` | Drop apps below this review count. |
| `qualifiedMinReviews` | `10` | Review bar for the qualified\_lead tier. |
| `requireEmail` | `false` | Only keep apps with a support email. |

### Notes

- Keywords match the app handle (URL slug), so use core terms (email, upsell, subscription) rather than long phrases.
- Respect the App Store terms and applicable outreach laws when contacting developers.

# Actor input Schema

## `keywords` (type: `array`):

Terms matched against app handles (e.g. email, upsell, reviews, wholesale, subscription).

## `maxLeads` (type: `integer`):

Cap total leads scored per run.

## `maxPerKeyword` (type: `integer`):

Cap apps taken from each keyword (exact and prefix matches first).

## `minReviews` (type: `integer`):

Drop apps with fewer reviews than this. Zero keeps everything.

## `qualifiedMinReviews` (type: `integer`):

Reviews at or above this, with a support email, tier a lead as qualified\_lead.

## `requireEmail` (type: `boolean`):

Skip apps whose listing has no public developer support email.

## `concurrency` (type: `integer`):

App pages fetched in parallel.

## `proxyConfiguration` (type: `object`):

Apify proxy. Recommended at volume so the App Store does not rate limit a single IP.

## Actor input object example

```json
{
  "keywords": [
    "email",
    "upsell",
    "reviews"
  ],
  "maxLeads": 200,
  "maxPerKeyword": 80,
  "minReviews": 0,
  "qualifiedMinReviews": 10,
  "requireEmail": false,
  "concurrency": 8,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "keywords": [
        "email",
        "upsell",
        "reviews"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapemint/shopify-app-developer-leads").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "keywords": [
        "email",
        "upsell",
        "reviews",
    ],
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("scrapemint/shopify-app-developer-leads").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "keywords": [
    "email",
    "upsell",
    "reviews"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call scrapemint/shopify-app-developer-leads --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=scrapemint/shopify-app-developer-leads",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/zhwXnFGec5Ps9TSyv/builds/LKWkfhorxW9oPizc5/openapi.json
