Universal Search API
Using the Universal Search API, you can scrape various search engine results without worrying about proxy rotation and data parsing. Our API is fast and reliable.
Parameters
Scrapingdog Parameters
Parameter
Description
Search Query
Parameter
Description
Geographic Location and Localization
Parameter
Description
API Example
curl "https://api.scrapingdog.com/search/?api_key=5eaa61a6e562fc52fe763tr516e4653&query=footballimport requests
api_key = "5eaa61a6e562fc52fe763tr516e4653"
url = "https://api.scrapingdog.com/search/"
params = {
"api_key": api_key,
"query": "football"
}
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/search/';
const params = {
api_key: api_key,
query: 'football'
};
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);
});
API Response
{
"organic_results": [
{
"title": "NFL.com | Official Site of the National Football League",
"displayed_link": "https://www.nfl.com",
"snippet": "The official source for NFL news, video highlights, game-day coverage, schedules, stats, scores and more.",
"date": "",
"missing": [],
"link": "https://www.nfl.com/",
"extended_sitelinks": [
{
"title": "Schedule",
"link": "https://www.nfl.com/schedules/"
},
{
"title": "Live NFL Scores for 2025",
"link": "https://www.nfl.com/scores/"
},
{
"title": "Latest NFL Football News",
"link": "https://www.nfl.com/news/"
},
{
"title": "NFL Network Hub",
"link": "https://www.nfl.com/network/"
}
],
"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 form ...",
"date": "",
"missing": [],
"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
},
......
]Last updated