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://bandy.sportdevs.com/seasons-by-league?league_id=eq.{league_id}
Query Parameters
- league_id integer
Default value:
eq.3508
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": 3508,
"league_name": "Elitserien",
"league_hash_image": "75a552bce0fdb50e5655f6057a5d0370c65d9836f4ced125cb847c7acc8a42ae",
"seasons": [
{
"id": 12738,
"name": "Elitserien 23/24",
"year": "23/24"
},
{
"id": 14815,
"name": "Elitserien 22/23",
"year": "22/23"
},
{
"id": 15342,
"name": "Elitserien 21/22",
"year": "21/22"
},
{
"id": 15697,
"name": "Elitserien 20/21",
"year": "20/21"
},
{
"id": 16078,
"name": "Elitserien 19/20",
"year": "19/20"
},
{
"id": 17211,
"name": "Elitserien 18/19",
"year": "18/19"
},
{
"id": 17570,
"name": "Elitserien 17/18",
"year": "17/18"
},
{
"id": 18014,
"name": "Elitserien 16/17",
"year": "16/17"
},
{
"id": 18393,
"name": "Elitserien 15/16",
"year": "15/16"
},
{
"id": 18785,
"name": "Elitserien 14/15",
"year": "14/15"
},
{
"id": 19160,
"name": "Elitserien 13/14",
"year": "13/14"
},
{
"id": 19726,
"name": "Elitserien 12/13",
"year": "12/13"
},
{
"id": 20210,
"name": "Elitserien 11/12",
"year": "11/12"
},
{
"id": 20392,
"name": "Elitserien 10/11",
"year": "10/11"
},
{
"id": 20527,
"name": "Elitserien 09/10",
"year": "09/10"
},
{
"id": 20882,
"name": "Elitserien 08/09",
"year": "08/09"
}
]
}
]