Google Search Scraper
Pricing
$10.00/month + usage
Go to Apify Store
Pricing
$10.00/month + usage
Rating
0.0
(0)
Developer
Abdulrahman
Maintained by Community
Actor stats
0
Bookmarked
3
Total users
1
Monthly active users
5 days ago
Last modified
Categories
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:
| Field | Description |
|---|---|
search_term | The original search term used in the query |
results | An array of result objects extracted from Google Search |
Each entry inside results includes (when available):
| Sub-Field | Description |
|---|---|
title | The title of the search result |
url | The direct URL of the result |
displayed_url | The URL as displayed by Google (formatted version) |
description | The 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."}]}]

