Sitejabber Scraper
Spider read sitejabber.com in 125 ms without a browser and returned 207 lines of clean markdown, including the section "Why our fans love us".
Clothing](https://sitejabber.com/categories/clothing-fashion)Marketplace](https://sitejabber.com/categories/marketplace)Dating](https://sitejabber.com/categories/dating)Wholesale](https://sitejabber.com/categories/wholesale)Electronics](https://sitejabber.com/categories/electronics)Office Supplies](https://sitejabber.com/categories/office-supplies)Jobs](https://sitejabber.com/categories/jobs)Legal](https://sitejabber.com/categories/legal)## A history of trustOver twenty years of* Recognition for consumer protection* Tools to help you make smarter purchasesCheck us outAccess resources## Why our fans love us“I only wish I had known about this website a long time ago. It’s awesome to be able to get it out to the public what many of the sites are about. Thanks, SmartCustomer, for helping to open the book on scammers.”“SmartCustomer is a great website for writing reviews about various websites and businesses. I like this website more than Yelp and the other alternatives, because of its unique feature set and user interface.”“My go-to for website-company reviews. I can always find enough credible reviews that give me factual information, positive or negative, and it’s helped me greatly in my choice of so many businesses.”“If you have ever been ripped off, lost money, or been hugely disappointed in the products of an online business, and you want to warn others-this is the PERFECT SITE! Alternatively, if you love an online business and want to encourage people that they can trust it, write a review on SmartCustomer!”“They have literally every brand you can think of on their website, even those brands you typically have a hard time finding reviews for. Reviewers often leave helpful tips, pictures and videos as well. I highly recommend this site!” 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 sitejabber.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://www.sitejabber.com/reviews/amazon.com");
// 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!,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://www.sitejabber.com/reviews/amazon.com");
const data = await page.extractFields({
companyName: "h1.company-name",
overallRating: "[data-rating-typography], [class*='rating'] span",
totalReviews: { selector: "span", regex: /[d,]+ (total )?review/i },
reviewTitle: "h2, [data-service-review-title]",
reviewText: "p, [data-service-review-text]",
reviewRating: "[data-rating], [aria-label*='star']",
});
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 sitejabber.com costs to scrape.
The capture above cost $0.000564 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 Reviews scrapers.
Start scraping sitejabber.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.