# Sports Results

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:

<table><thead><tr><th width="129">Element</th><th width="123">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>title</code></td><td><code>String</code></td><td>Title of the sports restults container</td></tr><tr><td><code>league</code></td><td><code>String</code></td><td>The league </td></tr><tr><td><code>games</code></td><td><code>Arra</code>y</td><td>Games played by the team or player in question</td></tr></tbody></table>

### Sports Results Request Example

## Request Example That Returns Sports Elements

<mark style="color:blue;">`GET`</mark> `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<mark style="color:red;">\*</mark>        | String | `cfr cluj`       |
| api\_key<mark style="color:red;">\*</mark> | String | `<YOUR_API_KEY>` |

{% tabs %}
{% tab title="200: OK API response" %}

```javascript
{
    ...
    "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"
            }
            ]
        }
        ]
    },
    ...
}
```

{% endtab %}
{% endtabs %}

<figure><img src="/files/TnzaDvjH8PaJqjmYiI52" alt=""><figcaption><p>Scrape Google Sports Results</p></figcaption></figure>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.webscrapingapi.com/google-search-api/google-apis-response/google-search-api/sports-results.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
