# Vercel Marketplace Scraper (`crawlerbros/vercel-marketplace-scraper`) Actor

Scrape the Vercel Marketplace (vercel.com/marketplace) - browse all listed integrations, filter by category (AI, Database, Auth, CMS, Observability, etc.), search by keyword, or look up specific integrations by slug. Extracts name, publisher domain, category, description, install page URL, and icon.

- **URL**: https://apify.com/crawlerbros/vercel-marketplace-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Developer tools, Integrations, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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

## Vercel Marketplace Scraper

Scrape the **Vercel Marketplace** (vercel.com/marketplace) - the directory of storage, AI, observability, auth, commerce, and workflow integrations that connect to Vercel projects. Browse the full catalog, search by keyword, or filter by one of 26 categories. Pulls the integration name, publisher domain, category, description, install page URL, and icon straight from each integration's own listing page. HTTP-only, no login, no API key, no proxy required.

### What this actor does

- **Three modes:** `search` (keyword or full catalog), `byCategory` (browse one of 26 marketplace categories), and `bySlugs` (direct lookup by slug or full marketplace URL)
- **Live per-integration detail lookup:** every record is built from that integration's own marketplace page, not a cached summary - category, install count bucket, and links are always current
- **`byCategory` uses Vercel's own pre-filtered category page** (`vercel.com/marketplace/category/{slug}`) as the primary candidate source, falling back to a full-catalog scan only for the rare category whose browse page doesn't resolve
- **Finite category enum (26):** Agents, AI, Analytics, Authentication, CMS, Code Review, Code Security, Commerce, Database, DevTools, Experimentation, Flags, Logging, Messaging, Monitoring, Observability, Payments, Productivity, Searching, Security, Storage, Support Agent, Testing, Video, Web Automation, Workflow - kept in sync with Vercel's own category sidebar (`Database` and `Storage` currently group the same integrations upstream; both are exposed since both appear on the live site)
- **Integration type filter:** narrow to `Vercel Native` (deep resource provisioning) or `Third Party` (OAuth-connect) listings
- Empty fields are omitted from every record

### Output per integration

- `slug` - marketplace URL slug (e.g. `neon`, `arcjet`)
- `name` - integration display name
- `description` - one-paragraph summary
- `category` - primary category title; `categories[]` present when an integration spans more than one category
- `integrationType` - `Vercel Native` or `Third Party`
- `installsLabel` - Vercel's bucketed install-count badge (e.g. `1000+ installs`, `<500 installs`)
- `publisher` - vendor's registrable domain, derived from its website link (e.g. `neon.com`)
- `websiteUrl`, `documentationUrl`, `supportUrl`, `termsUrl`, `privacyPolicyUrl` - vendor resource links, when published
- `iconUrl` - integration icon
- `installUrl` - the Vercel Marketplace page to install/connect the integration from
- `sourceUrl` - same as `installUrl` (canonical page scraped)
- `recordType: "integration"`, `scrapedAt`

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `mode` | string | `search` | `search` (keyword or full catalog) / `byCategory` (browse a category) / `bySlugs` (direct lookup) |
| `searchQuery` | string | - | (mode=search) Keyword matched against name, slug, and description. Leave blank to return the full catalog in listing order |
| `category` | string | `storage` | (mode=byCategory) One of the 26 marketplace categories |
| `slugs` | array | - | (mode=bySlugs) Integration slugs or full URLs to look up directly, e.g. `neon` or `https://vercel.com/marketplace/neon` |
| `integrationType` | string | Any | Optional filter: `Vercel Native` / `Third Party` |
| `maxItems` | int | `10` | Maximum integrations to return (1-200) |

### Examples

#### Example: browse the full catalog

```json
{
  "mode": "search",
  "maxItems": 20
}
````

#### Example: search by keyword

```json
{
  "mode": "search",
  "searchQuery": "postgres",
  "maxItems": 10
}
```

#### Example: browse the AI category

```json
{
  "mode": "byCategory",
  "category": "ai",
  "maxItems": 10
}
```

#### Example: third-party observability tools only

```json
{
  "mode": "byCategory",
  "category": "observability",
  "integrationType": "Third Party",
  "maxItems": 10
}
```

#### Example: direct lookup by slug/URL

```json
{
  "mode": "bySlugs",
  "slugs": ["neon", "https://vercel.com/marketplace/upstash"]
}
```

### Use cases

- **Vendor research** - track which storage, auth, and observability vendors are listed on Vercel's marketplace
- **Competitive intelligence** - monitor a category (e.g. `observability`, `ai`) for new entrants
- **Integration discovery** - find a Vercel-native database, queue, or search provider for a new project
- **Partner directories** - mirror Vercel-approved integrations into an internal tooling catalog
- **Procurement** - compare install-count signals and publisher domains before adopting a vendor

### FAQ

**Is this affiliated with Vercel?**
No - this is an independent, third-party actor that reads Vercel's public marketplace pages. It is not affiliated with or endorsed by Vercel Inc.

**Does this actor install integrations on my Vercel account?**
No. It only reads publicly listed marketplace metadata. Vercel integrations require you to log in and click "Connect Account" from the `installUrl` yourself.

**What does `installsLabel` mean?**
Vercel shows install counts in coarse buckets (e.g. `<500 installs`, `1000+ installs`) rather than an exact number - the actor reports exactly what the marketplace page shows.

**Why do some integrations have more than one category?**
Vercel lets a vendor tag its listing with multiple categories (e.g. Upstash is tagged Storage, Searching, and Workflow). `category` is the primary tag; `categories[]` lists all of them when there is more than one.

**Why is `byCategory` slower than `search`?**
The category browse page only gives lightweight candidates (slug, name, blurb) - the actor still fetches each integration's own detail page for the full record (publisher, links, install bucket, icon), which is what takes the extra time per item.

**How fresh is the data?**
Every run fetches live pages directly from vercel.com - there is no caching layer.

**When would I use `bySlugs` instead of `search`?**
Use `bySlugs` when you already know exactly which integrations you want (from a URL, a slug you saved earlier, or a list from another source) - it skips the catalog/category scan entirely and fetches only those detail pages.

# Actor input Schema

## `mode` (type: `string`):

What to fetch from the Vercel Marketplace.

## `searchQuery` (type: `string`):

(mode=search) Keyword to match against integration name, slug, and description - e.g. `database`, `analytics`, `auth`. Leave blank to return the full marketplace catalog in listing order.

## `category` (type: `string`):

(mode=byCategory) Marketplace category to browse.

## `slugs` (type: `array`):

Vercel Marketplace integration slugs or full URLs to look up directly, e.g. `neon` or `https://vercel.com/marketplace/neon`.

## `integrationType` (type: `string`):

Optional filter on listing type. Leave as Any to include both.

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

Maximum number of integrations to return.

## Actor input object example

```json
{
  "mode": "search",
  "searchQuery": "",
  "category": "storage",
  "slugs": [],
  "integrationType": "",
  "maxItems": 10
}
```

# Actor output Schema

## `integrations` (type: `string`):

Dataset containing all scraped Vercel Marketplace integrations.

# 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 = {
    "mode": "search",
    "searchQuery": "",
    "category": "storage",
    "slugs": [],
    "integrationType": "",
    "maxItems": 10
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/vercel-marketplace-scraper").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 = {
    "mode": "search",
    "searchQuery": "",
    "category": "storage",
    "slugs": [],
    "integrationType": "",
    "maxItems": 10,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/vercel-marketplace-scraper").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 '{
  "mode": "search",
  "searchQuery": "",
  "category": "storage",
  "slugs": [],
  "integrationType": "",
  "maxItems": 10
}' |
apify call crawlerbros/vercel-marketplace-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=crawlerbros/vercel-marketplace-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Vercel Marketplace Scraper",
        "description": "Scrape the Vercel Marketplace (vercel.com/marketplace) - browse all listed integrations, filter by category (AI, Database, Auth, CMS, Observability, etc.), search by keyword, or look up specific integrations by slug. Extracts name, publisher domain, category, description, install page URL, and icon.",
        "version": "1.0",
        "x-build-id": "d8Cpcw6XfO0joAuai"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlerbros~vercel-marketplace-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlerbros-vercel-marketplace-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/crawlerbros~vercel-marketplace-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlerbros-vercel-marketplace-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/crawlerbros~vercel-marketplace-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlerbros-vercel-marketplace-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "search",
                            "byCategory",
                            "bySlugs"
                        ],
                        "type": "string",
                        "description": "What to fetch from the Vercel Marketplace.",
                        "default": "search"
                    },
                    "searchQuery": {
                        "title": "Search query",
                        "type": "string",
                        "description": "(mode=search) Keyword to match against integration name, slug, and description - e.g. `database`, `analytics`, `auth`. Leave blank to return the full marketplace catalog in listing order.",
                        "default": ""
                    },
                    "category": {
                        "title": "Category",
                        "enum": [
                            "agents",
                            "ai",
                            "analytics",
                            "authentication",
                            "cms",
                            "code-review",
                            "code-security",
                            "commerce",
                            "database",
                            "dev-tools",
                            "experimentation",
                            "flags",
                            "logging",
                            "messaging",
                            "monitoring",
                            "observability",
                            "payments",
                            "productivity",
                            "searching",
                            "security",
                            "storage",
                            "support-agent",
                            "testing",
                            "video",
                            "web-automation",
                            "workflow"
                        ],
                        "type": "string",
                        "description": "(mode=byCategory) Marketplace category to browse.",
                        "default": "storage"
                    },
                    "slugs": {
                        "title": "Slugs or URLs (mode=bySlugs)",
                        "type": "array",
                        "description": "Vercel Marketplace integration slugs or full URLs to look up directly, e.g. `neon` or `https://vercel.com/marketplace/neon`.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "integrationType": {
                        "title": "Integration type filter",
                        "enum": [
                            "",
                            "Vercel Native",
                            "Third Party"
                        ],
                        "type": "string",
                        "description": "Optional filter on listing type. Leave as Any to include both.",
                        "default": ""
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 200,
                        "type": "integer",
                        "description": "Maximum number of integrations to return.",
                        "default": 10
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
