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
  • Sports Results Request Example
  • Request Example That Returns Sports Elements
  1. Google Search API
  2. Google APIs Response
  3. Google Search API

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

Array

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

Scrape Google Sports Results
Page cover image