# GitHub Marketplace App Vendor Leads (`lead.gen.labs/github-marketplace-app-vendor-leads`) Actor

Discover developer tool vendors, GitHub app publishers, DevOps platforms, AI coding tools, security solutions, and integration providers from GitHub Marketplace, delivering clean vendor and contact-ready lead data for B2B sales, partner outreach, CRM enrichment, and developer ecosystem research.

- **URL**: https://apify.com/lead.gen.labs/github-marketplace-app-vendor-leads.md
- **Developed by:** [LeadGen Labs](https://apify.com/lead.gen.labs) (community)
- **Categories:** Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $19.00 / 1,000 record scrapeds

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

## GitHub Marketplace App Vendor Leads - GitHub Marketplace Scraper

### FAQ

***

### 1. What is GitHub Marketplace App Vendor Leads?

GitHub Marketplace App Vendor Leads is a GitHub marketplace scraper for finding public vendor leads from GitHub Marketplace app listings. It extracts focused contact details and business details for developer tool vendors, CI/CD platforms, code review apps, security tools, AI coding apps, DevOps software, testing tools, deployment platforms, and GitHub integration providers.

***

### 2. Why Use This Tool?

Use this actor to discover companies building apps and integrations for the GitHub developer ecosystem. It supports GitHub Marketplace lead generation, developer tool prospecting, SaaS vendor discovery, DevOps partner research, B2B sales intelligence, software company sourcing, and contact discovery while keeping the output minimal.

***

### 3. How to Use GitHub Marketplace App Vendor Leads?

Select all GitHub Marketplace apps or one or more app categories, set the maximum number of vendor leads, and run the actor. The actor fetches public GitHub Marketplace app pages, follows app listing pages, and returns normalized vendor lead data from available public fields.

***

### 4. What Data Points Do I Get in Return?

You get a minimal vendor lead record with app name, app ID, app slug, listing URL, vendor name, vendor GitHub profile, vendor website, verified domain, category, app type, pricing, short description, documentation URL, support URL, status URL, privacy URL, terms URL, repository URL, public email addresses, and phone numbers when available.

***

### 5. Can I Enrich this Data with Email Addresses?

Yes. The actor can extract public email addresses from GitHub Marketplace listing and vendor data. Email extraction is optional and uses the `email-found` pay-per-event charge only when public emails are found.

***

### 6. Can I Integrate This Actor Into Other Data Pipelines?

Yes. You can run this GitHub marketplace scraper through Apify, export the dataset, or connect it to CRM enrichment, outbound sales, partner recruitment, developer ecosystem research, marketplace research, or lead scoring workflows. For custom solutions and integrations, reach out to lead.gen.labs.1@gmail.com.

# Actor input Schema

## `categories` (type: `array`):

Select one or more GitHub Marketplace app categories to scrape.

## `max_results` (type: `integer`):

Maximum GitHub Marketplace app vendor lead records to save.

## `extract_emails` (type: `boolean`):

Extract distinct public email addresses from fetched GitHub Marketplace listing and vendor data.

## `request_delay_millis` (type: `integer`):

Delay between GitHub Marketplace requests in milliseconds.

## Actor input object example

```json
{
  "categories": [
    "all"
  ],
  "max_results": 100,
  "extract_emails": true,
  "request_delay_millis": 300
}
```

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("lead.gen.labs/github-marketplace-app-vendor-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 = {}

# Run the Actor and wait for it to finish
run = client.actor("lead.gen.labs/github-marketplace-app-vendor-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 '{}' |
apify call lead.gen.labs/github-marketplace-app-vendor-leads --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=lead.gen.labs/github-marketplace-app-vendor-leads",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/Ia2efsvHATzffoYvN/builds/xNYUfyWh6qFVl9A1b/openapi.json
