# Salesforce AppExchange Scraper (`crawlergang/salesforce-appexchange-scraper`) Actor

Scrape Salesforce AppExchange with the leading enterprise cloud marketplace with 5,000+ apps. Browse all listings, search by keyword, filter by category, or look up specific apps by URL. Extracts title, provider, rating, reviews, pricing, categories, and more.

- **URL**: https://apify.com/crawlergang/salesforce-appexchange-scraper.md
- **Developed by:** [Crawler Gang](https://apify.com/crawlergang) (community)
- **Categories:** Developer tools, Automation, E-commerce
- **Stats:** 2 total users, 0 monthly users, 100.0% runs succeeded, 11 bookmarks
- **User rating**: 5.00 out of 5 stars

## 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 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

## Salesforce AppExchange Scraper

Extract app listings from [Salesforce AppExchange](https://appexchange.salesforce.com/) — the leading enterprise cloud marketplace with 5,000+ apps, components, and solutions built on Salesforce.

### What You Get

Each listing returns:

| Field | Description |
|---|---|
| `listingId` | Unique AppExchange listing ID |
| `title` | App name |
| `provider` | Publisher / developer name |
| `url` | Full AppExchange listing URL |
| `logoUrl` | App logo image URL |
| `shortDescription` | Listing description |
| `typeLabel` | App, Component, Bolt, etc. |
| `rating` | Average user rating (1–5) |
| `reviewCount` | Number of user reviews |
| `pricing` | Free, Paid, or Free to install |
| `isFree` | Boolean — is the listing free? |
| `categories` | List of category paths (e.g. `Analytics > CRM Analytics`) |
| `category` | Primary category |
| `supportedEditions` | Salesforce editions (Professional, Enterprise, etc.) |
| `isLightningReady` | Supports Lightning Experience |
| `isMobileReady` | Supports Salesforce1 Mobile |
| `latestRelease` | Date of latest release |
| `scrapedAt` | ISO timestamp |

### Input Parameters

#### Mode

- **Browse** (`browse`) — Paginate through all AppExchange listings, with optional filters
- **Search** (`search`) — Filter listings by keyword (searches title, description, publisher)
- **By URL** (`byUrl`) — Fetch specific listings by their AppExchange URL

#### Filters

| Parameter | Type | Description |
|---|---|---|
| `searchQuery` | String | Keyword to match in title, description, or publisher |
| `categoryFilter` | Select | Filter by Salesforce category (Sales, Analytics, etc.) |
| `pricingFilter` | Select | Filter by pricing model (Free, Paid) |
| `minRating` | Number | Minimum star rating (1.0–5.0) |
| `maxItems` | Integer | Maximum number of results (1–5000) |

### Example Inputs

**Search for CRM apps:**

```json
{
  "mode": "search",
  "searchQuery": "CRM",
  "maxItems": 50
}
```

**Browse free analytics apps:**

```json
{
  "mode": "browse",
  "categoryFilter": "Analytics",
  "pricingFilter": "Free",
  "maxItems": 100
}
```

**Fetch specific listings:**

```json
{
  "mode": "byUrl",
  "listingUrls": [
    "https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3u00000Qt7LiEAJ"
  ]
}
```

### Use Cases

- **Market research** — Discover competitors and complementary tools in the Salesforce ecosystem
- **Partner monitoring** — Track new releases and updates from Salesforce ISV partners
- **Category analysis** — Analyze pricing trends and review counts across categories
- **Lead generation** — Find companies offering specific Salesforce integrations
- **Competitive intelligence** — Monitor rating trends and reviewer sentiment

### FAQ

**Does this require a Salesforce account?**
No. The scraper uses publicly accessible AppExchange data and requires no credentials.

**How many listings are available?**
AppExchange has 5,500+ listed apps and solutions at any given time.

**Can I filter by Salesforce edition?**
Use the `categoryFilter` or `searchQuery` fields to narrow results. Edition filtering is applied post-retrieval from the `supportedEditions` field in each record.

**How often is AppExchange data updated?**
AppExchange data is live. Run the actor anytime for current ratings, review counts, and pricing.

**What's the difference between browse and search modes?**
Browse retrieves all listings in the API's natural order (most recently installed first). Search applies a keyword filter to the same dataset, returning only listings where your query appears in the title, description, or publisher name.

# Actor input Schema

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

How to scrape AppExchange listings.

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

Keyword to search for in listing names and descriptions.

## `categoryFilter` (type: `string`):

Filter results to a specific top-level Salesforce category.

## `pricingFilter` (type: `string`):

Filter by pricing model.

## `listingUrls` (type: `array`):

AppExchange listing URLs to fetch directly (e.g. https://appexchange.salesforce.com/appxListingDetail?listingId=...).

## `minRating` (type: `number`):

Only include listings with rating at or above this value (1.0–5.0).

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

Maximum number of listings to return.

## Actor input object example

```json
{
  "mode": "search",
  "searchQuery": "CRM",
  "categoryFilter": "",
  "pricingFilter": "",
  "listingUrls": [],
  "maxItems": 20
}
```

# Actor output Schema

## `listings` (type: `string`):

Dataset containing all scraped AppExchange listings.

# 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": "CRM",
    "categoryFilter": "",
    "pricingFilter": "",
    "listingUrls": [],
    "maxItems": 20
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlergang/salesforce-appexchange-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": "CRM",
    "categoryFilter": "",
    "pricingFilter": "",
    "listingUrls": [],
    "maxItems": 20,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlergang/salesforce-appexchange-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": "CRM",
  "categoryFilter": "",
  "pricingFilter": "",
  "listingUrls": [],
  "maxItems": 20
}' |
apify call crawlergang/salesforce-appexchange-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

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