Seasons By Tournament
This endpoint allows you to retrieve the seasons from a specific tournament.
Multi-language: This feature allows the user to manually change the language of the API response by adding value to the
lang
attribute. Example:lang=en
.
Pagination: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.
Update Period: The endpoint is updated every day.
Recommended Calls: Limit calls to 1 per day.
Use Cases
Get seasons from a specific tournament_idhttps://tennis.sportdevs.com/seasons-by-tournament?tournament_id=eq.{tournament_id}
Query Parameters
- tournament_id integer
Default value:
eq.569
The id of the tournament
- offset string
Default value:
0
Limiting and Pagination
- limit string
Default value:
50
Limiting and Pagination
- lang string
Default value:
en
Multi-language
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema array
- tournament_id integer
The id of the tournament
Note: This is a Primary Key.
- tournament_name text
The name of the tournament
- seasons jsonb
The seasons
[
{
"tournament_id": 569,
"tournament_name": "French Open, Paris, France",
"seasons": [
{
"id": 11865,
"name": "French Open Women Singles 2023",
"year": "2023"
},
{
"id": 13835,
"name": "2022 French Open Women Singles",
"year": "2022"
},
{
"id": 14827,
"name": "2021 French Open Women Singles",
"year": "2021"
},
{
"id": 15511,
"name": "2020 French Open Women Singles",
"year": "2020"
},
{
"id": 16178,
"name": "2019 French Open Women Singles",
"year": "2019"
}
]
}
]