Angi (Angie's List) Scraper avatar
Angi (Angie's List) Scraper
Try Actor

$30.00/month

View all Actors
Angi (Angie's List) Scraper

Angi (Angie's List) Scraper

babak/angi-angie-s-list-scraper
Try Actor

$30.00/month

Angi (Angie’s List) Scraper allows you to extract Angie's List companies' data. Using our search fields, you'll get general details, contact info, and reviews for market and advertising research, competitive and customer feedback analysis, product development, and business partnership.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4client = ApifyClient("<YOUR_API_TOKEN>")
5
6# Prepare the Actor input
7run_input = {
8    "location": "Portland",
9    "category": "electrical",
10    "maxListings": 5,
11    "reviewsFilter": 0,
12    "maxReviews": 10,
13    "directLinks": [],
14    "categoryLinks": [],
15    "proxyConfiguration": { "useApifyProxy": True },
16    "maxConcurrency": 100,
17}
18
19# Run the Actor and wait for it to finish
20run = client.actor("babak/angi-angie-s-list-scraper").call(run_input=run_input)
21
22# Fetch and print Actor results from the run's dataset (if there are any)
23print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
24for item in client.dataset(run["defaultDatasetId"]).iterate_items():
25    print(item)
26
27# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start
Developer
Maintained by Community
Actor metrics
  • 4 monthly users
  • 2 stars
  • 97.9% runs succeeded
  • 7.5 days response time
  • Created in Jun 2023
  • Modified 8 days ago