Organic Results
Scrape Google Search and get all the organic results in a JSON format.
Each basic Google search returns a number of organic results. Only exceptional keywords end up without any results from Google. In the Google Search API, all organic results are grouped under the organic_results
key and include the following elements:
title
String
Title of the scraped Google result
link
String
Link to the result
displayed_link
String
Linked displayed on the Google search page
snippet
String
Description of the result
position
Integer
Result position on page
Organic Results Request Examples
Request Example That Returns Organic Elements
GET
https://serpapi.webscrapingapi.com/v1?engine=google&api_key=<YOUR_API_KEY>&q= google
This is a basic GET request that returns the organic results found on the Google page.
Query Parameters
q*
String
google
api_key*
String
<YOUR_API_KEY>
{
...
"organic_results": [
{
"title": "Google",
"link": "https://www.google.com/",
"displayed_link": "https://www.google.com",
"snippet": "Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking ...",
"position": 1
},
{
"title": "Google",
"link": "https://www.google.com/",
"displayed_link": "https://www.google.com",
"snippet": "Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking ...",
"position": 2
},
{
"title": "The Keyword | Google",
"link": "https://blog.google/",
"displayed_link": "https://blog.google",
"snippet": "Discover all the latest about our products, technology, and Google culture on our official blog.",
"position": 3
},
{
"title": "Google - About Google, Our Culture & Company News",
"link": "https://about.google/",
"displayed_link": "https://about.google",
"snippet": "Stay up to date with Google company news and products. Discover stories about our culture, philosophy, and how Google technology is impacting others.",
"position": 4
},
{
"title": "Browse All of Google's Products & Services - Google",
"link": "https://about.google/intl/en_us/products/",
"displayed_link": "https://about.google › intl › en_us › products",
"snippet": "Browse a list of Google products designed to help you work and play, stay organized, get answers, keep in touch, grow your business, and more.",
"position": 5
},
{
"title": "Google - Home | Facebook",
"link": "https://m.facebook.com/Google/",
"displayed_link": "https://m.facebook.com › ... › Google",
"snippet": "Google, Mountain View, CA. 28147760 likes · 42224 talking about this · 607 ... Google is on Facebook. To connect with Google, log in or create an account.",
"position": 6
}
],
...
}

Last updated