Yelp Scraper avatar
Yelp Scraper
Try for free

7 days trial then $20.00/month - No credit card required now

View all Actors
Yelp Scraper

Yelp Scraper

tri_angle/yelp-scraper
Try for free

7 days trial then $20.00/month - No credit card required now

Free Yelp web scraper to extract data from Yelp. Fast Yelp review scraper, but also gets business details and ratings without using the Yelp API.

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 mode

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "searchTerms": [
11        "Pizza"
12    ],
13    "locations": [
14        "New York"
15    ],
16    "searchLimit": 10,
17    "maxImages": 1,
18    "reviewLimit": 5,
19    "reviewsLanguage": "ALL",
20    "proxy": {
21        "useApifyProxy": true,
22        "apifyProxyGroups": [
23            "RESIDENTIAL"
24        ]
25    }
26};
27
28(async () => {
29    // Run the Actor and wait for it to finish
30    const run = await client.actor("tri_angle/yelp-scraper").call(input);
31
32    // Fetch and print Actor results from the run's dataset (if any)
33    console.log('Results from dataset');
34    const { items } = await client.dataset(run.defaultDatasetId).listItems();
35    items.forEach((item) => {
36        console.dir(item);
37    });
38})();
Developer
Maintained by Apify
Actor metrics
  • 126 monthly users
  • 99.3% runs succeeded
  • 12.6 days response time
  • Created in Dec 2019
  • Modified 3 days ago
Categories