WebScrapingAPI Docs
HomeLoginRegister
  • Introduction
    • Registration
    • Pricing
    • Free APIs
    • API Errors
    • Custom Response Headers
  • Browser API
    • Getting Started
      • Access the API
      • Authentication
      • API Parameters
    • Basic API Requests
      • GET Request
      • POST, PUT & PATCH Requests
      • Proxy Mode
    • Advanced API Features
      • Awaiting
      • Geolocation
      • Sessions
      • Forcing Timeouts
      • Custom Headers
      • Custom Cookies
      • Device Type
      • Viewport Sizing
      • Screenshot
      • Screenshot Options
      • Extraction Rules
      • JavaScript Instructions
      • Full JSON Response
      • JSON DOM Response
      • Block Resources
      • Captcha Solving
  • WebScrapingAPI
    • Getting Started
      • Access the API
      • API Parameters
    • Basic API Requests
      • GET Request
      • POST, PUT & PATCH Requests
    • Advanced API Features
      • Geolocation
      • Extraction Rules
      • Full JSON Response
      • JSON DOM Response
      • Rendering JavaScript
  • WebStealthProxy
    • Getting Started
      • Access the Proxy
      • Usage and Statistics
    • Basic Proxy Requests
    • Advanced Proxy Requests
      • Sessions
      • Geolocation
      • Custom Headers
      • Custom Cookies
      • Screenshots
  • Google Search API
    • Getting Started
      • Access the API
      • API Parameters
    • Google Search Engines
      • Google Search API
      • Google Maps API
      • Google Maps Reviews API
      • Google Reverse Image API
      • Google Trends API
        • Geo Parameter Options List
        • Google Trends Categories List
  • WB CUSTOM SEARCH API
    • Getting Started
      • Access the API
      • API Parameters
    • WB Custom Search Engines
      • Wayfair Product API
      • Best Buy Product API
      • Nordstrom Product API
  • Amazon Search API
    • Getting Started
      • API Parameters
      • Access the API
      • Supported Domains
    • Amazon Search Types
      • Amazon Search
      • Amazon Seller
        • Amazon Seller Products
        • Amazon Seller Profile
        • Amazon Seller Feedback
      • Amazon Product
      • Amazon Category
      • Amazon Bestsellers
      • Amazon New Releases
      • Amazon Deals
  • Bing Search API
    • Getting Started
      • Access the API
      • API Parameters
    • Basic API Requests
Powered by GitBook
On this page
  • Organic Results Request Examples
  • Request Example That Returns Organic Elements
  1. Google Search API
  2. Google APIs Response
  3. Google Search API

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:

Element
Type
Description

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

Name
Type
Description

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 2 years ago

Scrape Google Organic Results
Page cover image