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://snooker.sportdevs.com/seasons-by-tournament?tournament_id=eq.{tournament_id}
Query Parameters
- tournament_id integer
Default value:
eq.942
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": 942,
"tournament_name": "World Championship 2022",
"seasons": [
{
"id": 12382,
"name": "World Championship 2023",
"year": "2023"
},
{
"id": 13756,
"name": "World Championship 2022",
"year": "2022"
},
{
"id": 14541,
"name": "World Championship 2021",
"year": "2021"
},
{
"id": 15199,
"name": "World Championship 2020",
"year": "2020"
},
{
"id": 15762,
"name": "World Championship 2019",
"year": "2019"
},
{
"id": 16292,
"name": "World Championship 2018",
"year": "2018"
},
{
"id": 16747,
"name": "World Championship 2017",
"year": "2017"
},
{
"id": 17221,
"name": "World Championship 2016",
"year": "2016"
},
{
"id": 17637,
"name": "World Championship 2015",
"year": "2015"
},
{
"id": 18032,
"name": "World Championship 2014",
"year": "2014"
},
{
"id": 18347,
"name": "World Championship 2013",
"year": "2013"
},
{
"id": 18685,
"name": "World Championship 2012",
"year": "2012"
}
]
}
]