Google Search Scraper API
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 http://api.scrapingdog.com/google
with the below-given parameters.
Google Search Scraper API pricing is available here.
Parameters
Scrapingdog Parameters
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
search_mob
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
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
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
language
lr
Advanced Google Parameters
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
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
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&q=&rct=j&sa=U&url=https://www.britannica.com/story/why-do-some-people-call-football-soccer&ved=2ahUKEwj71JL8sOqGAxWHFmIAHe0zBHcQFnoECAMQHA&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&hl=en&gl=us&ei=aDt0ZvuANIetiLMP7eeQuAc&q=Why+is+football+called+soccer?&sa=X&ved=2ahUKEwj71JL8sOqGAxWHFmIAHe0zBHcQzmd6BAgDEB0\" data-ved=\"2ahUKEwj71JL8sOqGAxWHFmIAHe0zBHcQzmd6BAgDEB0\">More results</a></span></div></div></div></div></div>"
}
],
"ads": []
}
Video Tutorial
Last updated