
Google Search Results Scraper
- apify/google-search-scraper
- Modified
- Users 28.6k
- Runs 4.3M
- Created by
Apify
This Google Scraper enables you to scrape Google Search Engine Results Pages (SERPs) and extract organic and paid results, ads, queries, People Also Ask, prices, reviews, like a Google SERP API. Select country or language and extraction of custom attributes, and download your data, no coding needed.
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 = {
"queries": "Food in NYC",
"maxPagesPerQuery": 1,
"resultsPerPage": 100,
"countryCode": "",
"customDataFunction": async ({ input, $, request, response, html }) => {
return {
pageTitle: $('title').text(),
};
}
};
(async () => {
// Run the actor and wait for it to finish
const run = await client.actor("apify/google-search-scraper").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);
});
})();