Scrapingdog
HomePricingSupportLogin
  • Documentation
  • Web Scraping API
    • Request Customization
      • Javascript Rendering
        • Wait when rendering Javascript
      • Custom Headers
      • Premium Residential Proxies
      • Geotargeting
      • Sessions
  • POST Request
  • Google Search Scraper API
    • Google Country Parameter: Supported Google Countries
    • Supported Google Countries via cr parameter
    • Google Domains Page
    • Google Language Page
    • Google LR Language Page
  • Google AI Overview API
  • Google Maps API
    • Google Maps Posts API
    • Google Maps Photos API
    • Google Maps Reviews API
    • Google Maps Places API
  • Google Trends API
    • Google Trends Autocomplete API
    • Google Trends Trending Now API
  • Google Images API
  • Google News API
    • Google News API 2.0
  • Google Shopping API
  • Google Product API
  • Google Videos API
  • Google Shorts API
  • Google Autocomplete API
  • Google Scholar API
    • Google Scholar Profiles API
    • Google Scholar Author API
      • Google Scholar Author Citation API
    • Google Scholar Cite API
  • Google Finance API
  • Google Lens API
  • Google Jobs API
  • Google Local API
  • Google Patents API
    • Google Patent Details API
  • Bing Search Scraper API
  • Amazon Scraper API
    • Amazon Product Scraper
    • Amazon Search Scraper
    • Amazon Reviews API
    • Amazon Autocomplete Scraper
  • Instagram Scraper API
  • Linkedin Scraper API
    • Person Profile Scraper
    • Company Profile Scraper
  • Linkedin Jobs Scraper
    • Scrape Linkedin Jobs
    • Scrape LinkedIn Job Overview
  • Yelp Scraper API
  • Twitter Scraping API
    • X Scraping API 2.0
  • Indeed Scraper API
  • Zillow Scraper API
  • Youtube Scraper API
    • Youtube Search API
    • YouTube Transcripts API
    • YouTube Channel API
  • Walmart Scraper API
    • Walmart Product Scraper
    • Walmart Search Scraper
    • Walmart Reviews Scraper
  • Screenshot API
  • Webhook Integration
  • Datacenter Proxies
  • Account API
Powered by GitBook
On this page
  • Parameters
  • API Example
  • Response
  • Video Tutorial

Google Search Scraper API

PreviousPOST RequestNextGoogle Country Parameter: Supported Google Countries

Last updated 10 days ago

Using Google Search API you can scrape Google search results without worrying about proxy rotation and data parsing. Our API is fast and reliable.

Each successful request will cost you 5 API credits.

You have to send a GET request to https://api.scrapingdog.com/google with the below-given parameters.

Google Search Scraper API pricing is available .

Parameters

Scrapingdog Parameters

Parameter
Description

api_key required

Your personal API key. Available on your dashboard Type: String

advance_search

This can be used to get advanced feature snippets from Google. If true, will cost 10 credits per request otherwise 5. Default Value - false Type - String

mob_search

Type: Boolean

Default: false Use this parameter to get mobile search results.

html

This will return the full HTML of the Google page. Default Value - false Type - Boolean

Search Query

Parameter
Description

query required

The parameter specifies the search query you want to execute, just like a standard Google search. You can include operators such as inurl:, site:, and intitle: to refine your results. Additionally, advanced search parameters like as_dt and as_eq are supported. Example1 - query=pizza Type - String

Geographic Location and Localization

Parameter
Description

domain

Default: "google.com" Type: String

country

cr

uule

It is a parameter that specifies the geographic location or locale for which the search results should be tailored. Possible Value could be w+CAIQIFJlbGF5IFN0YXRlcw==

Type - String

location

This parameter specifies the origin location of the search. It cannot be used in combination with the uule parameter. For best results and to closely mimic a real user's search behavior, it's recommended to set the location at the city level. Type - String

language

lr

Advanced Google Parameters

Parameter
Description

ludocid

This parameter specifies the ID (CID) of the Google My Business listing you want to extract, also referred to as the Google Place ID. Type - String

lsig

kgmid

This parameter specifies the ID (KGMID) of the Google Knowledge Graph listing you want to scrape, also referred to as the Google Knowledge Graph ID. When using the kgmid parameter, the results will be based on the originally encrypted search query. In certain cases, kgmid may override all other parameters except for page and results. Type - String

si

This parameter specifies the cached search parameters of the Google Search you want to scrape. When using the si parameter, the results will be based on the originally encrypted search query. In some cases, si may override all other parameters except for page and results. It can also be used to scrape Google Knowledge Graph Tabs. Type - String

ibp

This parameter controls the rendering of layouts and the expansion of certain elements (e.g., gwp;0,7 expands searches using ludocid for an extended Knowledge Graph view). Type - String

uds

This parameter allows filtering search results using a string provided by Google. Type - String

Advanced Filters

Parameter
Description

tbs

to be searched - An advanced parameter to filter search results. Type: String

safe

To filter the adult content set safe to active or to disable it set off. Default: off Type: String

nfpr

It excludes the result from an auto-corrected query that is spelled wrong. It can be set to 1 to exclude these results or 0 to include them.

Default: 0 Type: Boolean

filter

This parameter controls whether the 'Similar Results' and 'Omitted Results' filters are enabled or disabled. Set it to 1 (default) to activate the filters or 0 to turn them off. Type: Boolean

Pagination

Parameter
Description

page

This is the page number of Google searches. Its value can be 0 for the first page, 1 for the second page, and so on.

Default Value - 0 Type - String

results

Number of results you want to scrape. Its value could be anything between 1 and 100. Default Value - 10 Type - String

API Example

curl "https://api.scrapingdog.com/google/?api_key=5eaa61a6e562fc52fe763tr516e4653&query=football&results=10&country=us&page=0"
import requests

api_key = "5eaa61a6e562fc52fe763tr516e4653"
url = "https://api.scrapingdog.com/google/"

params = {
    "api_key": api_key,
    "query": "football",
    "results": 10,
    "country": "us",
    "page": 0
}

response = requests.get(url, params=params)

if response.status_code == 200:
    data = response.json()
    print(data)
else:
    print(f"Request failed with status code: {response.status_code}")
const axios = require('axios');

const api_key = '5eaa61a6e562fc52fe763tr516e4653';
const url = 'https://api.scrapingdog.com/google/';

const params = {
  api_key: api_key,
  query: 'football',
  results: 10,
  country: 'us',
  page: 0,
};

axios
  .get(url, { params: params })
  .then(function (response) {
    if (response.status === 200) {
      const data = response.data;
      console.log(data)
    } else {
      console.log('Request failed with status code: ' + response.status);
    }
  })
  .catch(function (error) {
    console.error('Error making the request: ' + error.message);
  });
<?php

// Set the API key and request parameters
$api_key = '5eaa61a6e562fc52fe763tr516e4653';
$query = 'football';
$results = 10;
$country = 'us';
$page = 0;

// Set the API endpoint
$url = 'https://api.scrapingdog.com/google/?api_key=' . $api_key . '&query=' . $query . '&results=' . $results . '&country=' . $country . '&page=' . $page;

// Initialize cURL session
$ch = curl_init($url);

// Set cURL options
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

// Execute the cURL request
$response = curl_exec($ch);

// Check if the request was successful
if ($response === false) {
    echo 'cURL error: ' . curl_error($ch);
} else {
    // Process the response data as needed
    echo $response;
}

// Close the cURL session
curl_close($ch);
require 'net/http'
require 'uri'

# Set the API key and request parameters
api_key = '5eaa61a6e562fc52fe763tr516e4653'
query = 'football'
results = 10
country = 'us'
page = 0

# Construct the API endpoint URL
url = URI.parse("https://api.scrapingdog.com/google/?api_key=#{api_key}&query=#{query}&results=#{results}&country=#{country}&page=#{page}")

# Create an HTTP GET request
request = Net::HTTP::Get.new(url)

# Create an HTTP client
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true # Enable SSL (https)

# Send the request and get the response
response = http.request(request)

# Check if the request was successful
if response.is_a?(Net::HTTPSuccess)
  puts response.body # Process the response data as needed
else
  puts "HTTP request failed with code: #{response.code}, message: #{response.message}"
end
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.io.IOException;

public class Main {
    public static void main(String[] args) {
        try {
            // Set the API key and request parameters
            String apiKey = "5eaa61a6e562fc52fe763tr516e4653";
            String query = "football";
            int results = 10;
            String country = "us";
            int page = 0;

            // Construct the API endpoint URL
            String apiUrl = "https://api.scrapingdog.com/google/?api_key=" + apiKey
                    + "&query=" + query
                    + "&results=" + results
                    + "&country=" + country
                    + "&page=" + page;

            // Create a URL object from the API URL string
            URL url = new URL(apiUrl);

            // Open a connection to the URL
            HttpURLConnection connection = (HttpURLConnection) url.openConnection();

            // Set the request method to GET
            connection.setRequestMethod("GET");

            // Get the response code
            int responseCode = connection.getResponseCode();

            if (responseCode == 200) {
                // Read the response from the connection
                BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
                String inputLine;
                StringBuilder response = new StringBuilder();

                while ((inputLine = reader.readLine()) != null) {
                    response.append(inputLine);
                }
                reader.close();

                // Process the response data as needed
                System.out.println(response.toString());
            } else {
                System.out.println("HTTP request failed with response code: " + responseCode);
            }

            // Close the connection
            connection.disconnect();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

Response

{
    "organic_data": [
        {
            "title": "NFL.com | Official Site of the National Football League",
            "displayed_link": "https://www.nfl.com",
            "snippet": "The official source for NFL News, NFL video highlights, Fantasy Football, game-day coverage, NFL schedules, stats, scores & more.Teams · News · Scores · Super Bowl",
            "link": "https://www.nfl.com/",
            "extended_sitelinks": [
                {
                    "title": "Teams",
                    "link": "https://www.nfl.com/teams/"
                },
                {
                    "title": "News",
                    "link": "https://www.nfl.com/news/"
                },
                {
                    "title": "Scores",
                    "link": "https://www.nfl.com/scores/"
                },
                {
                    "title": "Super Bowl",
                    "link": "https://www.nfl.com/super-bowl/"
                }
            ],
            "rank": 1
        },
        {
            "title": "Football - Wikipedia",
            "displayed_link": "https://en.wikipedia.org › wiki › Football",
            "snippet": "Football is a family of team sports that involve, to varying degrees, kicking a ball to score a goal. Unqualified, the word football generally means the ...American football · Association football · History of American football · Football (ball)",
            "link": "https://en.wikipedia.org/wiki/Football",
            "extended_sitelinks": [
                {
                    "title": "American football",
                    "link": "https://en.wikipedia.org/wiki/American_football"
                },
                {
                    "title": "Association football",
                    "link": "https://en.wikipedia.org/wiki/Association_football"
                },
                {
                    "title": "History of American football",
                    "link": "https://en.wikipedia.org/wiki/History_of_American_football"
                },
                {
                    "title": "Football (ball)",
                    "link": "https://en.wikipedia.org/wiki/Football_(ball)"
                }
            ],
            "rank": 2
        },
        {
            "title": "The Scoop - Wednesday June 19, 2024 - Footballscoop",
            "displayed_link": "https://footballscoop.com › The Scoop",
            "snippet": "1 day ago · This position will be a VOLUNTEER position on the Robert Morris Football Staff. This position will work directly with the Special Teams ...",
            "link": "https://footballscoop.com/thescoop/the-scoop-wednesday-june-19-2024",
            "rank": 3
        },
        {
            "title": "PREDICTING College Football 25 EA Sports Top Rated Players On ...",
            "displayed_link": "https://www.youtube.com › watch",
            "snippet": "19 hours ago · Subscribe to On3! ⬇️ youtube.com/on3sports/?sub_confirmation=1 Welcome to On3 | The best of ...Duration: 5:21Posted: 19 hours ago",
            "link": "https://www.youtube.com/watch?v=FLX9I925AfM",
            "rank": 4
        },
        {
            "title": "NFL 2024 - WEEK 1 Schedule",
            "displayed_link": "https://www.nfl.com › schedules",
            "snippet": "Sunday Night Football. View Schedule. Monday Night Football. View Schedule. GAME ACCESS. NFL App Logo; Sirius XM Logo ...Sunday Night Football · Monday Night Football · Thursday Night Football · NFL 2017",
            "link": "https://www.nfl.com/schedules/",
            "extended_sitelinks": [
                {
                    "title": "Sunday Night Football",
                    "link": "https://www.nfl.com/schedules/sunday-night-football/"
                },
                {
                    "title": "Monday Night Football",
                    "link": "https://www.nfl.com/schedules/monday-night-football/"
                },
                {
                    "title": "Thursday Night Football",
                    "link": "https://www.nfl.com/schedules/thursday-night-football/"
                },
                {
                    "title": "NFL 2017",
                    "link": "https://www.nfl.com/schedules/2017/reg1/"
                }
            ],
            "rank": 5
        },
        {
            "title": "USA Football | The Sport's Governing Body",
            "displayed_link": "https://usafootball.com",
            "snippet": "USA Football's here to lead, strengthen and grow the game alongside you as the sport's governing body through education, events and the U.S. National Team ...",
            "link": "https://usafootball.com/",
            "rank": 6
        },
        {
            "title": "NFL on ESPN - Scores, Stats and Highlights",
            "displayed_link": "https://www.espn.com › nfl",
            "snippet": "Visit ESPN for NFL live scores, video highlights and latest news. Stream Monday Night Football on ESPN+ and play Fantasy Football.NFL Schedule · NFL Scoreboard · Football Power Index · NFL Football Power Index",
            "link": "https://www.espn.com/nfl/",
            "extended_sitelinks": [
                {
                    "title": "NFL Schedule",
                    "link": "https://www.espn.com/nfl/schedule"
                },
                {
                    "title": "NFL Scoreboard",
                    "link": "https://www.espn.com/nfl/scoreboard"
                },
                {
                    "title": "Football Power Index",
                    "link": "https://www.espn.com/nfl/fpi"
                },
                {
                    "title": "NFL Football Power Index",
                    "link": "https://www.espn.com/nfl/story/_/id/40237323/nfl-football-power-index-2024-season-projections-super-bowl-chances-playoff-draft"
                }
            ],
            "rank": 7
        },
        {
            "title": "Pro-Football-Reference.com: Pro Football Stats, History, Scores ...",
            "displayed_link": "https://www.pro-football-reference.com",
            "snippet": "Complete source for pro football history including complete player, team, and league stats, awards, records, leaders, rookies and scores.Seasons · NFL Leaders · Teams · Players",
            "link": "https://www.pro-football-reference.com/",
            "extended_sitelinks": [
                {
                    "title": "Seasons",
                    "link": "https://www.pro-football-reference.com/years/"
                },
                {
                    "title": "NFL Leaders",
                    "link": "https://www.pro-football-reference.com/leaders/"
                },
                {
                    "title": "Teams",
                    "link": "https://www.pro-football-reference.com/teams/index.htm"
                },
                {
                    "title": "Players",
                    "link": "https://www.pro-football-reference.com/players/"
                }
            ],
            "rank": 8
        },
        {
            "title": "Football - The People's Sport - Reddit",
            "displayed_link": "https://www.reddit.com › football",
            "snippet": "Use this thread for all your football-related discussions, questions, and tactical analyses. Whether you want to share your thoughts on recent matches, discuss ...R/football icon · Why has football never been... · Hot take: Modern Football is...",
            "link": "https://www.reddit.com/r/football/",
            "extended_sitelinks": [
                {
                    "title": "R/football icon",
                    "link": "https://www.reddit.com/r/football/top/"
                },
                {
                    "title": "Why has football never been...",
                    "link": "https://www.reddit.com/r/football/comments/17fbzfp/why_has_football_never_been_big_in_the_the_us/"
                },
                {
                    "title": "Hot take: Modern Football is...",
                    "link": "https://www.reddit.com/r/football/comments/18l41dr/hot_take_modern_football_is_killing_the_game_we/"
                }
            ],
            "rank": 9
        }
    ],
    "people_also_ask": [
        {
            "question": "Who is the losingest NFL team?",
            "id": "accdef_1",
            "rank": 1,
            "answers": "\\x3cdiv\\x3e\\x3cdiv style\\x3d\\x22padding-bottom:12px;padding-top:0px\\x22 class\\x3d\\x22hwc kCrYT\\x22\\x3e\\x3cdiv class\\x3d\\x22yStFkb\\x22\\x3e\\x3cdiv class\\x3d\\x22Gx5Zad xpd EtOod pkphOe\\x22\\x3e\\x3cdiv class\\x3d\\x22kCrYT\\x22\\x3e\\x3cdiv class\\x3d\\x22PqksIc nRlVm\\x22\\x3e\\x3cdiv class\\x3d\\x22BNeawe\\x22\\x3e\\x3cdiv\\x3e\\x3cdiv class\\x3d\\x22BNeawe\\x22\\x3eLinguistically creative students at the University of Oxford in the 1880s distinguished between the sports of \\u201crugger\\u201d (rugby football) and \\u201cassoccer\\u201d (association football). The latter term was further shortened to \\u201csoccer\\u201d (sometimes spelled \\u201csocker\\u201d), and the name quickly spread beyond the campus.\\x3c/div\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3cdiv class\\x3d\\x22x54gtf\\x22\\x3e\\x3c/div\\x3e\\x3cdiv class\\x3d\\x22kCrYT\\x22\\x3e\\x3ca href\\x3d\\x22/url?esrc\\x3ds\\x26amp;q\\x3d\\x26amp;rct\\x3dj\\x26amp;sa\\x3dU\\x26amp;url\\x3dhttps://www.britannica.com/story/why-do-some-people-call-football-soccer\\x26amp;ved\\x3d2ahUKEwj71JL8sOqGAxWHFmIAHe0zBHcQFnoECAMQHA\\x26amp;usg\\x3dAOvVaw2QkKEaazavMOfvmDq4u1DS\\x22 data-ved\\x3d\\x222ahUKEwj71JL8sOqGAxWHFmIAHe0zBHcQFnoECAMQHA\\x22\\x3e\\x3cspan\\x3e\\x3cdiv class\\x3d\\x22BNeawe vvjwJb AP7Wnd\\x22\\x3e\\x3cspan class\\x3d\\x22rQMQod Xb5VRe\\x22\\x3eWhy Do Some People Call Football \\u201cSoccer\\u201d? - Britannica\\x3c/span\\x3e\\x3c/div\\x3e\\x3c/span\\x3e\\x3cspan\\x3e\\x3cdiv class\\x3d\\x22BNeawe UPmit AP7Wnd\\x22\\x3ewww.britannica.com \\u203a story \\u203a why-do-some-people-call-football-soccer\\x3c/div\\x3e\\x3c/span\\x3e\\x3c/a\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3cdiv\\x3e\\x3cdiv class\\x3d\\x22P1NWSe\\x22\\x3e\\x3cdiv class\\x3d\\x22wOMIed nkPlDb\\x22\\x3e\\x3cspan class\\x3d\\x22JhFlyf VQFmSd\\x22\\x3e\\x3ca class\\x3d\\x22f4J0H\\x22 href\\x3d\\x22https://www.google.com/search?sca_esv\\x3d7848dc2536e4d400\\x26amp;hl\\x3den\\x26amp;gl\\x3dus\\x26amp;ei\\x3daDt0ZvuANIetiLMP7eeQuAc\\x26amp;q\\x3dWhy+is+football+called+soccer?\\x26amp;sa\\x3dX\\x26amp;ved\\x3d2ahUKEwj71JL8sOqGAxWHFmIAHe0zBHcQzmd6BAgDEB0\\x22 data-ved\\x3d\\x222ahUKEwj71JL8sOqGAxWHFmIAHe0zBHcQzmd6BAgDEB0\\x22\\x3eMore results\\x3c/a\\x3e\\x3c/span\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3c/div\\x3e"
        },
        {
            "question": "What football game is playing today?",
            "id": "accdef_3",
            "rank": 2,
            "answers": "\\x3cdiv\\x3e\\x3cdiv style\\x3d\\x22padding-bottom:12px;padding-top:0px\\x22 class\\x3d\\x22hwc kCrYT\\x22\\x3e\\x3cdiv class\\x3d\\x22yStFkb\\x22\\x3e\\x3cdiv class\\x3d\\x22Gx5Zad xpd EtOod pkphOe\\x22\\x3e\\x3cdiv class\\x3d\\x22kCrYT\\x22\\x3e\\x3cdiv class\\x3d\\x22PqksIc nRlVm\\x22\\x3e\\x3cdiv class\\x3d\\x22BNeawe\\x22\\x3e\\x3cdiv\\x3e\\x3cdiv class\\x3d\\x22BNeawe\\x22\\x3eLinguistically creative students at the University of Oxford in the 1880s distinguished between the sports of \\u201crugger\\u201d (rugby football) and \\u201cassoccer\\u201d (association football). The latter term was further shortened to \\u201csoccer\\u201d (sometimes spelled \\u201csocker\\u201d), and the name quickly spread beyond the campus.\\x3c/div\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3cdiv class\\x3d\\x22x54gtf\\x22\\x3e\\x3c/div\\x3e\\x3cdiv class\\x3d\\x22kCrYT\\x22\\x3e\\x3ca href\\x3d\\x22/url?esrc\\x3ds\\x26amp;q\\x3d\\x26amp;rct\\x3dj\\x26amp;sa\\x3dU\\x26amp;url\\x3dhttps://www.britannica.com/story/why-do-some-people-call-football-soccer\\x26amp;ved\\x3d2ahUKEwj71JL8sOqGAxWHFmIAHe0zBHcQFnoECAMQHA\\x26amp;usg\\x3dAOvVaw2QkKEaazavMOfvmDq4u1DS\\x22 data-ved\\x3d\\x222ahUKEwj71JL8sOqGAxWHFmIAHe0zBHcQFnoECAMQHA\\x22\\x3e\\x3cspan\\x3e\\x3cdiv class\\x3d\\x22BNeawe vvjwJb AP7Wnd\\x22\\x3e\\x3cspan class\\x3d\\x22rQMQod Xb5VRe\\x22\\x3eWhy Do Some People Call Football \\u201cSoccer\\u201d? - Britannica\\x3c/span\\x3e\\x3c/div\\x3e\\x3c/span\\x3e\\x3cspan\\x3e\\x3cdiv class\\x3d\\x22BNeawe UPmit AP7Wnd\\x22\\x3ewww.britannica.com \\u203a story \\u203a why-do-some-people-call-football-soccer\\x3c/div\\x3e\\x3c/span\\x3e\\x3c/a\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3cdiv\\x3e\\x3cdiv class\\x3d\\x22P1NWSe\\x22\\x3e\\x3cdiv class\\x3d\\x22wOMIed nkPlDb\\x22\\x3e\\x3cspan class\\x3d\\x22JhFlyf VQFmSd\\x22\\x3e\\x3ca class\\x3d\\x22f4J0H\\x22 href\\x3d\\x22https://www.google.com/search?sca_esv\\x3d7848dc2536e4d400\\x26amp;hl\\x3den\\x26amp;gl\\x3dus\\x26amp;ei\\x3daDt0ZvuANIetiLMP7eeQuAc\\x26amp;q\\x3dWhy+is+football+called+soccer?\\x26amp;sa\\x3dX\\x26amp;ved\\x3d2ahUKEwj71JL8sOqGAxWHFmIAHe0zBHcQzmd6BAgDEB0\\x22 data-ved\\x3d\\x222ahUKEwj71JL8sOqGAxWHFmIAHe0zBHcQzmd6BAgDEB0\\x22\\x3eMore results\\x3c/a\\x3e\\x3c/span\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3c/div\\x3e"
        },
        {
            "question": "What is the highest paid NFL player?",
            "id": "accdef_5",
            "rank": 3,
            "answers": "\\x3cdiv\\x3e\\x3cdiv style\\x3d\\x22padding-bottom:12px;padding-top:0px\\x22 class\\x3d\\x22hwc kCrYT\\x22\\x3e\\x3cdiv class\\x3d\\x22yStFkb\\x22\\x3e\\x3cdiv class\\x3d\\x22Gx5Zad xpd EtOod pkphOe\\x22\\x3e\\x3cdiv class\\x3d\\x22kCrYT\\x22\\x3e\\x3cdiv class\\x3d\\x22PqksIc nRlVm\\x22\\x3e\\x3cdiv class\\x3d\\x22BNeawe\\x22\\x3e\\x3cdiv\\x3e\\x3cdiv class\\x3d\\x22BNeawe\\x22\\x3eLinguistically creative students at the University of Oxford in the 1880s distinguished between the sports of \\u201crugger\\u201d (rugby football) and \\u201cassoccer\\u201d (association football). The latter term was further shortened to \\u201csoccer\\u201d (sometimes spelled \\u201csocker\\u201d), and the name quickly spread beyond the campus.\\x3c/div\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3cdiv class\\x3d\\x22x54gtf\\x22\\x3e\\x3c/div\\x3e\\x3cdiv class\\x3d\\x22kCrYT\\x22\\x3e\\x3ca href\\x3d\\x22/url?esrc\\x3ds\\x26amp;q\\x3d\\x26amp;rct\\x3dj\\x26amp;sa\\x3dU\\x26amp;url\\x3dhttps://www.britannica.com/story/why-do-some-people-call-football-soccer\\x26amp;ved\\x3d2ahUKEwj71JL8sOqGAxWHFmIAHe0zBHcQFnoECAMQHA\\x26amp;usg\\x3dAOvVaw2QkKEaazavMOfvmDq4u1DS\\x22 data-ved\\x3d\\x222ahUKEwj71JL8sOqGAxWHFmIAHe0zBHcQFnoECAMQHA\\x22\\x3e\\x3cspan\\x3e\\x3cdiv class\\x3d\\x22BNeawe vvjwJb AP7Wnd\\x22\\x3e\\x3cspan class\\x3d\\x22rQMQod Xb5VRe\\x22\\x3eWhy Do Some People Call Football \\u201cSoccer\\u201d? - Britannica\\x3c/span\\x3e\\x3c/div\\x3e\\x3c/span\\x3e\\x3cspan\\x3e\\x3cdiv class\\x3d\\x22BNeawe UPmit AP7Wnd\\x22\\x3ewww.britannica.com \\u203a story \\u203a why-do-some-people-call-football-soccer\\x3c/div\\x3e\\x3c/span\\x3e\\x3c/a\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3cdiv\\x3e\\x3cdiv class\\x3d\\x22P1NWSe\\x22\\x3e\\x3cdiv class\\x3d\\x22wOMIed nkPlDb\\x22\\x3e\\x3cspan class\\x3d\\x22JhFlyf VQFmSd\\x22\\x3e\\x3ca class\\x3d\\x22f4J0H\\x22 href\\x3d\\x22https://www.google.com/search?sca_esv\\x3d7848dc2536e4d400\\x26amp;hl\\x3den\\x26amp;gl\\x3dus\\x26amp;ei\\x3daDt0ZvuANIetiLMP7eeQuAc\\x26amp;q\\x3dWhy+is+football+called+soccer?\\x26amp;sa\\x3dX\\x26amp;ved\\x3d2ahUKEwj71JL8sOqGAxWHFmIAHe0zBHcQzmd6BAgDEB0\\x22 data-ved\\x3d\\x222ahUKEwj71JL8sOqGAxWHFmIAHe0zBHcQzmd6BAgDEB0\\x22\\x3eMore results\\x3c/a\\x3e\\x3c/span\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3c/div\\x3e\\x3c/div\\x3e"
        },
        {
            "question": "Why is football called soccer?",
            "id": "accdef_7",
            "rank": 4,
            "answers": "<div><div style=\"padding-bottom:12px;padding-top:0px\" class=\"hwc kCrYT\"><div class=\"yStFkb\"><div class=\"Gx5Zad xpd EtOod pkphOe\"><div class=\"kCrYT\"><div class=\"PqksIc nRlVm\"><div class=\"BNeawe\"><div><div class=\"BNeawe\">Linguistically creative students at the University of Oxford in the 1880s distinguished between the sports of \\u201crugger\\u201d (rugby football) and \\u201cassoccer\\u201d (association football). The latter term was further shortened to \\u201csoccer\\u201d (sometimes spelled \\u201csocker\\u201d), and the name quickly spread beyond the campus.</div></div></div></div></div><div class=\"x54gtf\"></div><div class=\"kCrYT\"><a href=\"/url?esrc=s&amp;q=&amp;rct=j&amp;sa=U&amp;url=https://www.britannica.com/story/why-do-some-people-call-football-soccer&amp;ved=2ahUKEwj71JL8sOqGAxWHFmIAHe0zBHcQFnoECAMQHA&amp;usg=AOvVaw2QkKEaazavMOfvmDq4u1DS\" data-ved=\"2ahUKEwj71JL8sOqGAxWHFmIAHe0zBHcQFnoECAMQHA\"><span><div class=\"BNeawe vvjwJb AP7Wnd\"><span class=\"rQMQod Xb5VRe\">Why Do Some People Call Football \\u201cSoccer\\u201d? - Britannica</span></div></span><span><div class=\"BNeawe UPmit AP7Wnd\">www.britannica.com \\u203a story \\u203a why-do-some-people-call-football-soccer</div></span></a></div></div></div><div><div class=\"P1NWSe\"><div class=\"wOMIed nkPlDb\"><span class=\"JhFlyf VQFmSd\"><a class=\"f4J0H\" href=\"https://www.google.com/search?sca_esv=7848dc2536e4d400&amp;hl=en&amp;gl=us&amp;ei=aDt0ZvuANIetiLMP7eeQuAc&amp;q=Why+is+football+called+soccer?&amp;sa=X&amp;ved=2ahUKEwj71JL8sOqGAxWHFmIAHe0zBHcQzmd6BAgDEB0\" data-ved=\"2ahUKEwj71JL8sOqGAxWHFmIAHe0zBHcQzmd6BAgDEB0\">More results</a></span></div></div></div></div></div>"
        }
    ],
    "ads": []
}

Video Tutorial

To obtain local results from a specific country, for example, for India, it will be "google.co.in," and for the UK, it will be "google.co.uk". For a complete list of supported domains, visit the .

This parameter specifies the country for the Google search using a two-letter country code (e.g., US for the United States, UK for the United Kingdom, or FR for France). For a complete list of supported countries, visit the . Default Value - us Type - String

The parameter allows you to restrict the search to specific countries. It follows the format country{two-letter uppercase country code} and uses | as a separator for multiple countries. For example, countryFR|countryDE will return results only from French and German websites. Visit for a complete list of supported countries. Type - String

Language of the results. Possible Values - en, es, fr, de, etc. Visit for a complete list of supported countries. Default Value - en Type - String

Limit the search to one or multiple languages. It is used as lang_{language code}. Visit for a complete list of supported countries. Type - String

This parameter may be required to ensure the knowledge graph map view appears. You can obtain the lsig ID using our . It is also accessible through a redirect that Google utilizes within . Type - String

here
Google domains page
Google countries page
Google's cr country-specific page
Google's languages page
Google's lr languages page
Google Local API
Google My Business