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://hockey.sportdevs.com/seasons-by-league?league_id=eq.{league_id}
Query Parameters
- league_id integer
Default value:
eq.2044
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": 2044,
"league_name": "ICE Hockey League",
"league_hash_image": "06c683ba963def141916e4f0403a249237bf2ed32867d68c1d95aafb77e12053",
"seasons": [
{
"id": 11915,
"name": "ICE Hockey League 23/24",
"year": "23/24"
},
{
"id": 15595,
"name": "ICE Hockey League 22/23",
"year": "22/23"
},
{
"id": 17432,
"name": "ICE Hockey League 21/22",
"year": "21/22"
},
{
"id": 18571,
"name": "EHL 20/21",
"year": "20/21"
},
{
"id": 19568,
"name": "EHL 19/20",
"year": "19/20"
},
{
"id": 20248,
"name": "EHL 18/19",
"year": "18/19"
},
{
"id": 20943,
"name": "EHL 17/18",
"year": "17/18"
},
{
"id": 21108,
"name": "EHL 16/17",
"year": "16/17"
},
{
"id": 21181,
"name": "EHL 15/16",
"year": "15/16"
},
{
"id": 21508,
"name": "EHL 14/15",
"year": "14/15"
},
{
"id": 21996,
"name": "EHL 13/14",
"year": "13/14"
},
{
"id": 22458,
"name": "EHL 12/13",
"year": "12/13"
},
{
"id": 22739,
"name": "Erste Bank-EHL 11/12",
"year": "11/12"
},
{
"id": 22968,
"name": "Erste Bank-EHL 10/11",
"year": "10/11"
},
{
"id": 23247,
"name": "Erste Bank-EHL 09/10",
"year": "09/10"
},
{
"id": 23392,
"name": "Erste Bank-EHL 08/09",
"year": "08/09"
}
]
}
]