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
langattribute. 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://floorball.sportmicro.com/seasons-by-league?league_id=eq.{league_id}
Query Parameters
- league_id integer
The id of the league
Example: eq.48 - offset string
Default value:
0Limiting and Pagination
Example: 0 - limit string
Default value:
50Limiting and Pagination
Example: 50 - lang string
Default value:
enMulti-language
Example: en
- 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": 48,
"league_name": "Champions Cup",
"league_hash_image": "bb372b39c3ac79a80b82316bbec441e062750b6c73da0335ee739b316d0921f9",
"seasons": [
{
"id": 54,
"name": "Champions Cup 2026",
"year": "2026",
"start_time": "2025-08-30"
},
{
"id": 1143,
"name": "Champions Cup 2012",
"year": "2012",
"start_time": "2012-10-05"
},
{
"id": 1199,
"name": "Champions Cup 2011",
"year": "2011",
"start_time": "2011-10-04"
},
{
"id": 1363,
"name": "Champions Cup 2013",
"year": "2013",
"start_time": "2013-10-02"
},
{
"id": 3138,
"name": "Champions Cup 2014",
"year": "2014",
"start_time": "2014-10-01"
},
{
"id": 24521,
"name": "Champions Cup 24/25",
"year": "24/25",
"start_time": "2024-08-29"
},
{
"id": 25684,
"name": "Champions Cup 2023",
"year": "2023",
"start_time": "2023-12-02"
},
{
"id": 26296,
"name": "Champions Cup 2023",
"year": "2023",
"start_time": "2023-01-08"
},
{
"id": 27162,
"name": "Champions Cup 2022",
"year": "2022",
"start_time": "2022-01-15"
},
{
"id": 28706,
"name": "Champions Cup 2020",
"year": "2020",
"start_time": "2020-01-11"
},
{
"id": 29188,
"name": "Champions Cup 2019",
"year": "2019",
"start_time": "2019-01-04"
},
{
"id": 29716,
"name": "Champions Cup 2017",
"year": "2017",
"start_time": "2017-10-07"
},
{
"id": 30142,
"name": "Champions Cup 2016",
"year": "2016",
"start_time": "2016-10-02"
},
{
"id": 30515,
"name": "Champions Cup 2015",
"year": "2015",
"start_time": "2015-10-04"
}
]
}
]