> For the complete documentation index, see [llms.txt](https://docs.sportradar.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sportradar.com/uof/support-and-history/archived/deprecated-uof-endpoints/elements/tournament.md).

# Tournament

The tournament element provides information about the email tournament and contains 2 sub-elements which are:

* sport
* category

Here follows an example of the tournament element shown in the fixture end point.

```
<tournament id="sr:tournament:132" name="NBA">
            <sport id="sr:sport:2" name="Basketball"/>
            <category id="sr:category:15" name="USA" country_code="USA"/>
</tournament>
```

List of attributes in the tournament element:

| Attribute | Meaning                                                           | Possible values                                                       |
| --------- | ----------------------------------------------------------------- | --------------------------------------------------------------------- |
| id        | Unique id of the competition the fixture belongs in               | <p>String value, example:</p><ul><li>id="sr:tournament:132"</li></ul> |
| name      | Name of the tournament  (main competition) the fixture belongs in | <p>String value, example:</p><ul><li>name="NBA"</li></ul>             |

<br>

List of attributes in the sport sub-element:

| Attribute | Meaning                               | Possible values                                                 |
| --------- | ------------------------------------- | --------------------------------------------------------------- |
| id        | Unique id of the sport of the fixture | <p>String value, example:</p><ul><li>id="sr:sport:2"</li></ul>  |
| name      | Name of the sport                     | <p>String value, example:</p><ul><li>name="Basketball</li></ul> |

<br>

List of attributes in the category sub-element:

| Attribute     | Meaning                                                                                            | Possible values                                                    |
| ------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
| id            | Unique id of the category. The category addresses the country where the tournament is taking place | <p>String value, example:</p><ul><li>id="sr:category:19"</li></ul> |
| name          | Name of the category                                                                               | <p>String value, example:</p><ul><li>name="USA"</li></ul>          |
| country\_code | Code of the country for the category                                                               | <p>String value, example:</p><ul><li>country\_code="USA"</li></ul> |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.sportradar.com/uof/support-and-history/archived/deprecated-uof-endpoints/elements/tournament.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
