Seasons Groups
This endpoint allows you to retrieve the groups from seasons.
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 groups from a specific season_idhttps://floorball.sportdevs.com/seasons-groups?season_id=eq.{season_id}
Query Parameters
- season_id integer
Default value:
eq.12707
The id of the season
- 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
- season_id integer
The id of the season
Note: This is a Primary Key.
- season_name text
The name of the season
- groups jsonb
The groups of the season
[
{
"season_id": 12707,
"season_name": "World Championship Women 2021",
"groups": [
{
"name": "Group A",
"tournament_id": 1215,
"tournament_name": "World Championship, Women, Group A"
},
{
"name": "Group B",
"tournament_id": 12912,
"tournament_name": "World Championship, Women, Group B"
},
{
"name": "Group C",
"tournament_id": 12914,
"tournament_name": "World Championship, Women, Group C"
},
{
"name": "Group D",
"tournament_id": 12910,
"tournament_name": "World Championship, Women, Group D"
}
]
}
]