Leagues Info
This endpoint allows you to retrieve the info from leagues and cups.
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 several times a day.
Recommended Calls: Limit calls to 1 every day.
Use Cases
Get league info from a specific league_idhttps://handball.sportdevs.com/leagues-info?league_id=eq.{league_id}
Query Parameters
- league_id integer
Default value:
eq.2741
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 Primary Key.
- first_season_winner text
The first season winner of the league
- game_frequency integer
The frequency of the league
- competition_type text
The type of the competition
- first_season_start_year text
First season start year
- official_organization jsonb
The official organisation of the league
[
{
"league_id": 2741,
"first_season_winner": "KR Reykjavík",
"game_frequency": 1,
"competition_type": "super-cup",
"first_season_start_year": "1969",
"official_organization": [
{
"url": "https://www.ksi.is",
"name": "KSÍ"
}
]
}
]