# pub.dev Flutter & Dart Package Vendor Leads Scraper (`gocreative.ai/pubdev-flutter-vendor-leads`) Actor

Scrapes pub.dev for Flutter and Dart package publishers. Returns company domains, homepages, repositories, SDK constraints, and pub.dev listing URLs. Ideal for targeting mobile dev agencies, SDK vendors, and Flutter ecosystem companies.

- **URL**: https://apify.com/gocreative.ai/pubdev-flutter-vendor-leads.md
- **Developed by:** [GoCreative AI](https://apify.com/gocreative.ai) (community)
- **Categories:** Developer tools, Lead generation, Business
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $6.00 / 1,000 leads

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

## pub.dev Flutter & Dart Package Vendor Leads Scraper

### 📊 Example output (real run)

![Sample output](https://api.apify.com/v2/key-value-stores/1ztQFHwG8acESTazI/records/pubdev-flutter-vendor-leads-sample)

A real record from a live run — clean structured data, exported as CSV / JSON / Excel or via API.

**Find Flutter/Dart vendors on pub.dev — the companies and teams publishing mobile/cross-platform packages, with company domains and repositories.**

No API key, no signup. Pay only for the results you scrape. Output exports straight to CSV, JSON, or Excel — or pull it via the Apify API.

### What this scraper does

This actor pulls structured vendor records from **pub.dev — the official package registry for Flutter and Dart** and returns clean, deduplicated JSON ready for your CRM, outreach tool, or data pipeline. Every field comes straight from the source, so it reflects the current registry — not a stale third-party copy.

### Output fields

| Field | Description |
|---|---|
| `package_name` | pub.dev package name |
| `company_domain` | Publisher's verified company domain |
| `homepage_url` | Project / company homepage |
| `repository_url` | Source repository URL |
| `issue_tracker_url` | Issue tracker URL |
| `description` | Package description |
| `latest_version` | Most recent published version |

### Use cases

- Reach Flutter/Dart engineering teams for developer marketing
- Build a list of mobile dev-tool vendors by verified company domain
- Source technical hires by package ownership
- Enrich accounts with company domain + repo from package metadata

### Input

Filter by keyword or the fields in the input schema on this page — every input has an inline description. Leave filters broad to scrape widely, or narrow them to target a segment.

### Why use this actor

- **Authoritative source** — data comes straight from pub.dev — the official package registry for Flutter and Dart, not a resold aggregate.
- **Keyless & pay-per-result** — no subscription, no monthly minimum; run once or schedule daily.
- **Clean, typed, deduplicated records** — CRM-ready, exportable as CSV / JSON / Excel.
- **Schedulable** — automate refreshes with Apify Schedules to catch new publishers.

### FAQ

**Do I need an API key or account?** No — set your input and run it.

**Is the data official?** Yes — it comes directly from pub.dev — the official package registry for Flutter and Dart.

**Can I schedule it?** Yes — use Apify Schedules for hourly/daily/weekly refreshes.

**What can I export?** CSV, JSON, Excel, or pull it via the Apify API.

### Combine with the GoCreative suite

Pair this actor with GoCreative.AI's [company enrichment](https://apify.com/gocreative.ai) and sanctions/KYB screening actors to turn raw vendor leads into a full lead-to-compliance pipeline.

***

Built by **GoCreative.AI** — B2B lead-generation, enrichment, and compliance-screening actors for sales, RevOps, and diligence teams.

# Actor input Schema

## `maxItems` (type: `integer`):

Maximum number of package vendor leads to return (1-1000).

## `sdkFilter` (type: `string`):

Which pub.dev SDK ecosystem to search: flutter or dart.

## `sortBy` (type: `string`):

Sort order for packages: popularity, updated, created, like, or points.

## `requireHomepage` (type: `boolean`):

If true, only include packages that have a homepage URL set in their pubspec. Excludes hobby/personal packages without a business website.

## Actor input object example

```json
{
  "maxItems": 200,
  "sdkFilter": "flutter",
  "sortBy": "popularity",
  "requireHomepage": true
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# 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("gocreative.ai/pubdev-flutter-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("gocreative.ai/pubdev-flutter-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 gocreative.ai/pubdev-flutter-vendor-leads --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=gocreative.ai/pubdev-flutter-vendor-leads",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/qNe3liaOQ5gDMpjR4/builds/89zE9dgMVOHodU753/openapi.json
