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

Scrape app listings from Salesforce AppExchange — developer contact info, ratings, pricing model, edition matrix, security review status, and partner program signals. Filter by HQ country, supported product, or app type.

- **URL**: https://apify.com/jungle\_synthesizer/salesforce-appexchange-scraper.md
- **Developed by:** [BowTiedRaccoon](https://apify.com/jungle_synthesizer) (community)
- **Categories:** Lead generation, Developer tools, Automation
- **Stats:** 82 total users, 3 monthly users, 100.0% runs succeeded, 2 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

Pay per event

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

## Salesforce AppExchange Scraper — App Listing & ISV Partner Data Extractor

Scrape app listings from [Salesforce AppExchange](https://appexchange.salesforce.com/). This Salesforce AppExchange data extractor and ISV partner directory tool pulls developer contact info (email, phone, HQ country), ratings, categories, supported products, pricing model, security review status, and industry data from all ~6,000 listings — or just the ones you point it at. Use it as a lead generation source or a programmatic AppExchange API alternative.

### Salesforce AppExchange Scraper Features

- Extract developer details: company name, website, email, HQ location, employee count, founding year
- Collect review statistics and average ratings across the entire marketplace in a single run
- Grab listing metadata — categories, supported Salesforce products, required products, target personas, system requirements
- Crawl the full sitemap automatically, or supply specific listing URLs when you already know what you want
- Set a cap with `maxItems` or set it to `0` and walk away while it scrapes everything

### Who Uses This AppExchange Lead Generation and Partner Data

- **Sales teams** — build lead lists of Salesforce ecosystem companies, filtered by industry and employee count
- **Product managers** — map the competitive landscape for a Salesforce product category without manually clicking through thousands of listings
- **Market researchers** — track rating trends, review velocity, and new entrants across the AppExchange over time
- **Developers** — find which Salesforce products are most commonly required or supported, informing integration priorities
- **Consultants** — identify partners and vendors by location, industry focus, or founding year

### How Salesforce AppExchange Scraper Works

1. **Discovers listings.** Fetches the AppExchange sitemap and extracts every listing URL. If you provide specific URLs instead, it skips the sitemap entirely and goes straight to those.
2. **Extracts structured data.** Each listing page embeds a `window.stores` JSON object with the full listing payload — developer info, review stats, categories, the lot. The scraper parses that directly rather than scraping DOM elements, which means the data is clean and complete.
3. **Outputs to dataset.** Every record lands in the Apify dataset with consistent field names, ready for export to CSV, JSON, Excel, or downstream integrations.

### Input

```json
{
  "appsUrls": [],
  "maxItems": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyCountry": "US"
  }
}
```

| Field | Type | Default | Description |
|-------|------|---------|-------------|
| `appsUrls` | array | `[]` | URLs of specific AppExchange listings to crawl. Leave empty to crawl all apps from the sitemap. |
| `maxItems` | integer | `10` | Maximum number of apps to scrape. Set to `0` to scrape all ~6,000 listings. |
| `proxyConfiguration` | object | Apify US proxy | Proxy settings for the crawler. Apify proxy with US geolocation is recommended. |

#### Scrape specific listings

```json
{
  "appsUrls": [
    { "url": "https://appexchange.salesforce.com/appxListingDetail?listingId=a0N4V00000HZZEaUAP" },
    { "url": "https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3A00000EFpAtUAL" }
  ],
  "maxItems": 0,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

#### Scrape entire marketplace

```json
{
  "maxItems": 0,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyCountry": "US"
  }
}
```

### Salesforce AppExchange Scraper Output Fields

Each listing produces one record with the following fields:

```json
{
  "app_name": "Conga Composer",
  "developer_name": "Conga",
  "developer_website": "https://www.conga.com",
  "developer_email": "support@conga.com",
  "developer_location": "Broomfield, CO",
  "developer_employees": 1200,
  "developer_year_founded": 2006,
  "review_count": 843,
  "average_rating": 4.7,
  "description": "Generate polished documents, presentations, and reports from Salesforce data with a few clicks.",
  "logo_url": "https://appexchange.salesforce.com/partners/servlet/servlet.FileDownload?file=00P4V000012example",
  "products_required": ["Sales Cloud", "Service Cloud"],
  "listing_categories": ["Document Generation", "Productivity"],
  "products_supported": ["Sales Cloud", "Service Cloud", "Experience Cloud"],
  "target_user_persona": ["Sales Operations", "Revenue Operations"],
  "system_requirements": "Salesforce Enterprise Edition or higher",
  "supported_industries": ["Financial Services", "Healthcare", "Manufacturing"],
  "app_url": "https://appexchange.salesforce.com/appxListingDetail?listingId=a0N300000016bFkEAI"
}
```

| Field | Type | Description |
|-------|------|-------------|
| `app_name` | string | App name from the listing page |
| `developer_name` | string | Publisher or developer company name |
| `developer_website` | string | Publisher website URL |
| `developer_email` | string | Publisher contact email |
| `developer_location` | string | Publisher headquarters location |
| `developer_employees` | number | Publisher employee count |
| `developer_year_founded` | number | Year the publisher was founded |
| `review_count` | number | Total number of reviews |
| `average_rating` | number | Average review rating |
| `description` | string | App description from meta tags |
| `logo_url` | string | App logo or image URL |
| `products_required` | array | Salesforce products required to use the app |
| `listing_categories` | array | AppExchange categories the listing belongs to |
| `products_supported` | array | Salesforce products the app supports |
| `target_user_persona` | array | Target user personas (e.g., Sales Ops, Admins) |
| `system_requirements` | string | System requirements text |
| `supported_industries` | array | Industries the app is designed for |
| `app_url` | string | Full AppExchange listing URL |

### FAQ

**How many listings can Salesforce AppExchange Scraper handle?**
Salesforce AppExchange Scraper processes the entire marketplace — roughly 6,000 listings at last count. Set `maxItems` to `0` and it will work through every one. A full run takes about an hour depending on proxy speed.

**Does it need proxies?**
Salesforce AppExchange Scraper works best with Apify proxy set to a US geolocation. The site does not aggressively block scrapers, but proxies keep things reliable at scale.

**Can I scrape just a handful of specific apps?**
Yes. Pass their URLs in the `appsUrls` field and the scraper skips the sitemap entirely. Useful when you already know which listings you care about.

**What happens if a listing page fails to load?**
The scraper logs a warning and moves on. Failed pages do not stop the run or corrupt the dataset. You can check the run log afterward to see which URLs, if any, were skipped.

**How fresh is the developer contact info?**
Salesforce AppExchange Scraper reads whatever is on the listing page at crawl time. If a developer has updated their email or location since your last run, the new data shows up on the next one.

**Can I find apps that passed Salesforce security review or hold FedRAMP certification?**
Yes. Each record carries the security review approval date and version, plus boolean flags for FedRAMP certification, Salesforce Shield support, and managed-package status. Filter the dataset on those fields to build a list of compliance-ready or public-sector ISV partners.

### Need More Features?

Need custom fields, filters, or a different target site? [File an issue](https://console.apify.com/actors/issues) or get in touch.

### Why Use Salesforce AppExchange Scraper?

- **Structured data from a messy source** — The scraper pulls from the embedded JSON payload, not fragile DOM selectors, so the output is consistent and complete across all listings.
- **Two modes, no configuration headaches** — Point it at specific URLs or let it discover every listing from the sitemap. Either way, the output schema stays the same, which means your downstream pipeline does not care which mode you used.
- **Developer intel that is hard to get manually** — Employee count, founding year, HQ location, contact email — all sitting in the listing data but buried behind clicks. The scraper flattens it into one row per app, ready for your CRM or spreadsheet.

***

**Further reading:** [Software Marketplace Data: App Stores, Review Sites, and Partner Directories](https://orbtop.com/articles/software-marketplace-review-data/)

# Actor input Schema

## `sp_intended_usage` (type: `string`):

Please describe how you plan to use the data extracted by this crawler.

## `sp_improvement_suggestions` (type: `string`):

Provide any feedback or suggestions for improvements.

## `sp_contact` (type: `string`):

Provide your email address so we can get in touch with you.

## `resumeCursor` (type: `string`):

Leave empty for a fresh crawl. To CONTINUE a previous run where it stopped — without paying again for records you already received — paste the `resumeCursor` value from that run's Output (the run's OUTPUT key). Resume promptly: the previous run's data expires with your account's retention window (free tier: your ~10 most recent runs).

## `appsUrls` (type: `array`):

URLs of specific apps to crawl. Leave empty to crawl all apps from sitemap.

## `keyword` (type: `string`):

Search AppExchange's own keyword search (e.g. 'CRM analytics') and crawl only the matching listings — seeded server-side from AppExchange's search API, not a full-store fetch filtered locally. Ignored if Apps URL(s) is set. Leave empty to crawl all apps from sitemap.

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

Maximum number of apps to scrape. Set to 0 to scrape all.

## `hqCountries` (type: `array`):

Filter by publisher HQ country (ISO-2 codes, e.g. \['US', 'GB', 'DE']). Leave empty to include all countries. Listings whose publisher has no country set are excluded when this filter is active.

## `productsSupported` (type: `array`):

Filter by Salesforce products supported (any-match). Examples: 'Sales Cloud', 'Service Cloud', 'Marketing Cloud'. Note: AppExchange ships many listings with empty productsSupported arrays — when this filter is active, those listings are excluded.

## `appTypes` (type: `array`):

Filter by app type. Common values: 'Package/Platform/Bolt' (bolt template), 'Package/Platform/Data' (data product), 'Package/Platform/App' (managed app). Leave empty to include all types.

## Actor input object example

```json
{
  "sp_intended_usage": "Describe your intended use...",
  "sp_improvement_suggestions": "Share your suggestions here...",
  "sp_contact": "Share your email here...",
  "maxItems": 10,
  "hqCountries": [],
  "productsSupported": [],
  "appTypes": []
}
```

# 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 = {
    "sp_intended_usage": "Describe your intended use...",
    "sp_improvement_suggestions": "Share your suggestions here...",
    "sp_contact": "Share your email here...",
    "keyword": "",
    "maxItems": 10,
    "hqCountries": [],
    "productsSupported": [],
    "appTypes": []
};

// Run the Actor and wait for it to finish
const run = await client.actor("jungle_synthesizer/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 = {
    "sp_intended_usage": "Describe your intended use...",
    "sp_improvement_suggestions": "Share your suggestions here...",
    "sp_contact": "Share your email here...",
    "keyword": "",
    "maxItems": 10,
    "hqCountries": [],
    "productsSupported": [],
    "appTypes": [],
}

# Run the Actor and wait for it to finish
run = client.actor("jungle_synthesizer/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 '{
  "sp_intended_usage": "Describe your intended use...",
  "sp_improvement_suggestions": "Share your suggestions here...",
  "sp_contact": "Share your email here...",
  "keyword": "",
  "maxItems": 10,
  "hqCountries": [],
  "productsSupported": [],
  "appTypes": []
}' |
apify call jungle_synthesizer/salesforce-appexchange-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

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