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://floorball.sportdevs.com/seasons-by-tournament?tournament_id=eq.{tournament_id}
Query Parameters
- tournament_id integer
Default value:
eq.1168
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": 1168,
"tournament_name": "Extraliga",
"seasons": [
{
"id": 12685,
"name": "Extraliga 23/24",
"year": "23/24"
},
{
"id": 14746,
"name": "Superliga 22/23",
"year": "22/23"
},
{
"id": 16134,
"name": "Extraliga 21/22",
"year": "21/22"
},
{
"id": 17268,
"name": "Extraliga 20/21",
"year": "20/21"
},
{
"id": 18026,
"name": "Extraliga 19/20",
"year": "19/20"
},
{
"id": 18676,
"name": "Extraliga 18/19",
"year": "18/19"
},
{
"id": 19338,
"name": "Extraliga 17/18",
"year": "17/18"
},
{
"id": 19973,
"name": "Extraliga 16/17",
"year": "16/17"
},
{
"id": 20576,
"name": "Extraliga 15/16",
"year": "15/16"
},
{
"id": 20752,
"name": "Extraliga 14/15",
"year": "14/15"
},
{
"id": 20909,
"name": "Extraliga 13/14",
"year": "13/14"
},
{
"id": 21009,
"name": "Extraliga 12/13",
"year": "12/13"
},
{
"id": 21357,
"name": "Extraliga 11/12",
"year": "11/12"
},
{
"id": 21483,
"name": "Extraliga 10/11",
"year": "10/11"
}
]
}
]