# Salesforce AppExchange Scraper (`crawlerbros/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/crawlerbros/salesforce-appexchange-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Developer tools, Automation, E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 4 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 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

## 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("crawlerbros/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("crawlerbros/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 crawlerbros/salesforce-appexchange-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Salesforce AppExchange Scraper",
        "description": "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.",
        "version": "1.0",
        "x-build-id": "VeQyGhthzvTpeKqyk"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlerbros~salesforce-appexchange-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlerbros-salesforce-appexchange-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~salesforce-appexchange-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlerbros-salesforce-appexchange-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~salesforce-appexchange-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlerbros-salesforce-appexchange-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": [
                            "browse",
                            "search",
                            "byUrl"
                        ],
                        "type": "string",
                        "description": "How to scrape AppExchange listings.",
                        "default": "search"
                    },
                    "searchQuery": {
                        "title": "Search query (mode=search)",
                        "type": "string",
                        "description": "Keyword to search for in listing names and descriptions.",
                        "default": "CRM"
                    },
                    "categoryFilter": {
                        "title": "Category filter",
                        "enum": [
                            "",
                            "Sales",
                            "Service",
                            "Marketing",
                            "Analytics",
                            "Commerce",
                            "Integration",
                            "Finance",
                            "HR",
                            "IT & Administration",
                            "Collaboration"
                        ],
                        "type": "string",
                        "description": "Filter results to a specific top-level Salesforce category.",
                        "default": ""
                    },
                    "pricingFilter": {
                        "title": "Pricing filter",
                        "enum": [
                            "",
                            "Free",
                            "Paid",
                            "Free to install"
                        ],
                        "type": "string",
                        "description": "Filter by pricing model.",
                        "default": ""
                    },
                    "listingUrls": {
                        "title": "Listing URLs (mode=byUrl)",
                        "type": "array",
                        "description": "AppExchange listing URLs to fetch directly (e.g. https://appexchange.salesforce.com/appxListingDetail?listingId=...).",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "minRating": {
                        "title": "Minimum rating",
                        "minimum": 1,
                        "maximum": 5,
                        "type": "number",
                        "description": "Only include listings with rating at or above this value (1.0–5.0)."
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Maximum number of listings to return.",
                        "default": 20
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
