Sports Results
Scrape sports results by simply querying Google.
If you're searching for a sports team or person, and they recently participated in a competition, Google usually returns a box showing the results of that team or person. Our scraper automatically picks up these results and sends it to you inside the sport_results
property from the API response. The structure of this property is made of:
Element
Type
Description
title
String
Title of the sports restults container
league
String
The league
games
Arra
y
Games played by the team or player in question
Sports Results Request Example
Request Example That Returns Sports Elements
GET
https://serpapi.webscrapingapi.com/v1?engine=google&api_key=<YOUR_API_KEY>&q=cfr%20cluj
This is a basic GET request that returns the sports results found on the Google page.
Query Parameters
Name
Type
Description
q*
String
cfr cluj
api_key*
String
<YOUR_API_KEY>
{
...
"sports_results": {
"title": "CFR 1907 Cluj",
"league": "1st in Liga I",
"games": [
{
"teams": [
{
"name": "Academica Clinceni",
"score": "1"
},
{
"name": "CFR Cluj",
"score": "2"
}
],
"status": "FT",
"date": "FT"
},
{
"teams": [
{
"name": "CFR Cluj",
"score": "2"
},
{
"name": "Lincoln Red Imps",
"score": "0"
}
],
"status": "FT",
"date": "FT"
},
{
"teams": [
{
"name": "CFR Cluj",
"score": "1"
},
{
"name": "Chindia Târgoviște",
"score": "0"
}
],
"status": "FT",
"date": "FT"
},
{
"teams": [
{
"name": "CFR Cluj",
"score": "1"
},
{
"name": "Young Boys",
"score": "1"
}
],
"status": "FT",
"date": "FT"
},
{
"teams": [
{
"score": "Mioveni"
}
]
},
{
"teams": [
{
"score": "Young Boys"
}
]
}
]
},
...
}

Last updated