Extract data from hundreds of Google Maps businesses and locations in seconds. Get Google Maps data including reviews, images, opening hours, location, popular times & more. Go beyond the limits of the official Google Places API. Download data with Google Maps extractor in JSON, CSV, Excel and more.

- Modified
- Users28,045
- Runs3,150,888
To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running actors via the API in Apify Docs.
import { ApifyClient } from 'apify-client';
// Initialize the ApifyClient with API token
const client = new ApifyClient({
token: '<YOUR_API_TOKEN>',
});
// Prepare actor input
const input = {
"searchStringsArray": [
"restaurant"
],
"countryCode": "",
"maxCrawledPlacesPerSearch": 50,
"language": "en",
"maxImages": 0,
"maxReviews": 0,
"proxyConfig": {
"useApifyProxy": true
},
"allPlacesNoSearchAction": ""
};
(async () => {
// Run the actor and wait for it to finish
const run = await client.actor("compass/crawler-google-places").call(input);
// Fetch and print actor results from the run's dataset (if any)
console.log('Results from dataset');
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
console.dir(item);
});
})();