Google Search Scraper avatar
Google Search Scraper

Pricing

$10.00/month + usage

Go to Apify Store
Google Search Scraper

Google Search Scraper

Get more pages from a given query.

Pricing

$10.00/month + usage

Rating

0.0

(0)

Developer

Abdulrahman

Abdulrahman

Maintained by Community

Actor stats

0

Bookmarked

3

Total users

1

Monthly active users

5 days ago

Last modified

Share

Google Search Results Scraper

This Actor extracts structured search results from Google based on a list of search terms.


Input

Provide an array of search terms in the exact form you would type into the Google search bar, using the following format:

{
"search_terms": ["best python tutorials", "linux performance tuning", "seo automation tools"]
}

Output

The Actor returns a dataset in which each item contains:

FieldDescription
search_termThe original search term used in the query
resultsAn array of result objects extracted from Google Search

Each entry inside results includes (when available):

Sub-FieldDescription
titleThe title of the search result
urlThe direct URL of the result
displayed_urlThe URL as displayed by Google (formatted version)
descriptionThe snippet or short summary shown by Google

Example Output

[
{
"search_term": "python",
"results": [
{
"title": "Python Tutorial",
"url": "https://www.geeksforgeeks.org/python/python-programming-language-tutorial/",
"displayed_url": "https://www.geeksforgeeks.org › python › python-prog...",
"description": "Python is one of the most popular programming languages. It's simple to use, packed with features and supported by a wide range of libraries and frameworks."
},
{
"title": "Our Blogs",
"url": "https://www.python.org/blogs/",
"displayed_url": "https://www.python.org › blogs",
"description": "The official home of the Python Programming Language."
}
]
}
]