Reviews
Verified
Angi Reviews Scraper
Extract home service pro listings, verified reviews, pricing estimates, and availability from Angi. Built on spider-browser .
- target
- angi.com
- success rate
- 99.9%
- latency
- ~4ms
Quick start
Extract data in minutes.
angi-reviews-scraper.ts
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://www.angi.com/companylist/plumbing.htm");
const data = await page.extractFields({
businessName: "h3, a[href*='/profile/']",
rating: "[aria-label*='star'], [class*='rating'] span",
reviews: { selector: "span", regex: /d+.*review/i },
serviceType: "[class*='service'], [class*='type']",
location: "[class*='location'], address",
verified: "[class*='badge'], [class*='verified']",
});
console.log(data);
await spider.close(); ready to run · spider-browser · TypeScript
Fetch API
One endpoint for angi.com.
Structured JSON from angi.com with a single POST. AI-resolved selectors, cached on the first call.
POST
/fetch/angi.com/ Business nameRatingReview countService typePrice rangeLocation
cURL
curl -X POST https://api.spider.cloud/fetch/angi.com/ \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"return_format": "json"}'
Python
import requests
resp = requests.post(
"https://api.spider.cloud/fetch/angi.com/",
headers={
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json",
},
json={"return_format": "json"},
)
print(resp.json())
Node.js
const resp = await fetch("https://api.spider.cloud/fetch/angi.com/", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json",
},
body: JSON.stringify({ return_format: "json" }),
});
const data = await resp.json();
console.log(data);
Extraction
Fields you can pull.
Business nameRatingReview countService typePrice rangeLocationVerified badgeAvailability
Listings
Business intelligence
Extract ratings, reviews, and contact info from angi.com listings.
Pagination
Review collection
Navigate through paginated reviews with scroll-based lazy loading.
Geo
Location targeting
Access location-specific results with geo-targeted residential proxies.
Related
More Reviews scrapers.
Start
Start scraping angi.com.
Grab an API key and call the endpoint above. The first request resolves the config; every request after hits cache.