Salesforce AppExchange Scraper
Spider read appexchange.salesforce.com in 3.1 s without a browser and returned 778 lines of clean markdown, including sections like "Page 1", "Page 3" and "Page 4".
Use Feedback in Salesforce Classic 15List Views with Salesforce Classic 16Feedback Record with Salesforce Classic 17# Page 3The Lightning Knowledge Feedback app provides the ability to create feedback for LightningKnowledge articles. The Feedback app is available in both Lightning Experience and SalesforceClassic. This guide gives insight into the latest updates to the app, what’s been added, and how itAvailable in Lightning Experience and Salesforce Classic.To install and customize the Article Quality Index App:To view and edit object permissions:● “View Setup and Configuration”● “Manage Profiles and Permission Sets”# Page 4The Lightning Knowledge Feedback app captures user feedback on Knowledge articles from bothinternal staff and/or external customers who view articles in a Community. With all of the userfeedback collected in one place, Knowledge users can easily improve articles for greater customersuccess. Organizations responsible for Article content and quality are able to make sure thatfeedback is handled in a reasonable time by assigning the feedback to the right people, tracking thestatus of feedback assigned, monitoring backlogged feedback, and tracking how the feedback washandled. You can incorporate these trends into reports to track who is managing feedback when,and how efficiently this feedback is being handled.The updated version of the package works with the Lightning Knowledge data model. This modelhas a consolidated single object (named Knowledge by default) and works on the concrete objectsKA and KAV, rather than Abstract Entity used in Classic Knowledge.Lightning Knowledge must be enabled to use this package. However, Feedback can be used inLightning Experience or Salesforce Classic interface.Feedback can be created in two ways with this package:● You can add a Lightning component to the Lightning Knowledge record page and/or the The same call, in code.
The capture above came back as markdown. These examples add a key, so you get browser rendering, proxies, and concurrency on appexchange.salesforce.com.
import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3u00000MBinOEAT");
// No selectors, no schema. Spider reads the page and names the fields.
const data = await page.scrape();
console.log(data);
await spider.close(); import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
stealth: 2,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3u00000MBinOEAT");
const data = await page.extractFields({
name: "h1.appx-page-header-2__title",
rating: ".appx-rating-summary__average",
reviews: ".appx-rating-summary__count",
price: ".appx-pricing__price",
description: ".appx-detail-section__description",
publisher: ".appx-detail-section__provider-name",
});
console.log(data);
await spider.close(); Ready for volume? Get an API key →
Fields you can pull.
Spider names these from the page. The capture above came back as markdown; the same
call with return_format: "json" returns them as keys.
What appexchange.salesforce.com costs to scrape.
The capture above cost $0.001441 to fetch. Pricing is $1 per GB of pre-transformation bandwidth plus $0.001 per CPU minute, so a page like this one lands at a fraction of a cent. Failed requests are billed at $0.
- Free balance on signup
- No card required to test
- Balance never expires
Run it keyless, no account
More SaaS & B2B scrapers.
AWS Marketplace Scraper
Extract software listings, pricing models, vendor data, and deployment options from AWS Marketplace for procurement research.
Zapier Scraper
Extract integration listings, supported triggers and actions, and app compatibility data from the Zapier automation platform.
Airtable Scraper
Extract template galleries, use case showcases, and universe base data from Airtable for workflow automation research.
Start scraping appexchange.salesforce.com.
You already have the call. A key raises the rate limit and turns on browser rendering, proxies, and concurrency. Balance never expires, and top-ups go through secure checkout.