Seasons By League
This endpoint allows you to retrieve the seasons from a specific league.
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 league_idhttps://snooker.sportdevs.com/seasons-by-league?league_id=eq.{league_id}
Query Parameters
- league_id integer
Default value:
eq.2858
The id of the league
- 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
- league_id integer
The id of the league
Note: This is a Foreign Key to
leagues.id
. - league_name text
The name of the league
- league_hash_image text
The hash image of the league
- seasons jsonb
The seasons
[
{
"league_id": 2858,
"league_name": "Championship League",
"league_hash_image": "0eb59c5d0ada8f229894bca9b011227acea77ffcb2144cbcac64c37ae920f59c",
"seasons": [
{
"id": 12306,
"name": "Championship League Invitational 22/23",
"year": "22/23"
},
{
"id": 13854,
"name": "Championship League Ranking 2023",
"year": "2022"
},
{
"id": 14639,
"name": "Championship League Snooker 2022",
"year": "2022"
},
{
"id": 16267,
"name": "Championship League 21/22",
"year": "21/22"
},
{
"id": 16870,
"name": "Championship League Snooker 2021",
"year": "2021"
},
{
"id": 17203,
"name": "Championship League 2021",
"year": "2021"
},
{
"id": 17563,
"name": "Championship League 20/21",
"year": "20/21"
},
{
"id": 17888,
"name": "Championship League 19/20",
"year": "19/20"
},
{
"id": 18186,
"name": "Championship League 2019",
"year": "2019"
},
{
"id": 18539,
"name": "Championship League 2018",
"year": "2018"
},
{
"id": 18943,
"name": "Championship League 2017",
"year": "2017"
},
{
"id": 19284,
"name": "Championship League 2016",
"year": "2016"
},
{
"id": 19610,
"name": "Championship League 2015",
"year": "2015"
},
{
"id": 40539,
"name": "Championship League 2024",
"year": "2024"
}
]
}
]