Leagues
This endpoint allows you to retrieve the leagues and the 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.
You can get the image of the league by calling the following url: https://images.sportdevs.com/{hash_image}.png
Use Cases
Get leagueshttps://basketball.sportdevs.com/leagues
Search the leagues by the name
https://basketball.sportdevs.com/leagues?name=like.*Championship*
Get leagues based on the idhttps://basketball.sportdevs.com/leagues?id=eq.{id}
Get leagues from a specific class_idhttps://basketball.sportdevs.com/leagues?class_id=eq.{class_id}
Query Parameters
- id integer
Default value:
eq.1894
The id of the league
- class_id integer
Default value:
eq.31
The id of the class
- 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
- id integer
The id of the league
Note: This is a Primary Key.
- name text
The name of the league
- importance integer
The importance level of the league
- level integer
The level of the league
- current_champion_team_id integer
The id of the team that hold the title
- current_champion_team_name text
The name of the team that hold the title
- current_champion_team_hash_image character varying
Possible values:
<= 64 characters
The name image of the team that hold the title
- current_champion_team_num_titles integer
The number of the title that the team is holding
- teams_most_titles jsonb
The ids of the teams with the most titles
- most_titles integer
The number of the most titles accomplished by one team
- primary_color character varying
Possible values:
<= 7 characters
The primary color of the league
- secondary_color character varying
Possible values:
<= 7 characters
The secondary color of the league
- connected_leagues jsonb
The ids of connected leagues
- higher_leagues jsonb
The ids of higher leagues
- lower_leagues jsonb
The ids of lower leagues
- start_league timestamp with time zone
The date of starting the league
- end_league timestamp with time zone
The date of ending the league
- hash_image character varying
Possible values:
<= 64 characters
The name of the image
- class_id integer
The id of the class
Note: This is a Foreign Key to
classes.id
. - class_name text
The name of the class
- class_hash_image character varying
Possible values:
<= 64 characters
The name image of the class
[
{
"id": 1894,
"name": "VTB United League",
"importance": 0,
"level": 1,
"current_champion_team_id": 1100,
"current_champion_team_name": "UNICS Kazan",
"current_champion_team_hash_image": "0e85e1adaf86140e049f4dbc38a841adeb042098e5905188dd50eaabb77e8c59",
"current_champion_team_num_titles": 1,
"teams_most_titles": [
{
"team_id": 1122,
"team_name": "CSKA Moscow",
"team_hash_image": "3e82829b24f8239a8f1363f715123d1af7d09bd14e082637cb8c70ea4e953e56"
}
],
"most_titles": 10,
"primary_color": "#f9b431",
"secondary_color": "#0c3274",
"start_league": "2023-09-30T00:00:00+00:00",
"end_league": "2024-06-30T00:00:00+00:00",
"hash_image": "52f713d2c1921d7d566a3920d64e5d184e5613d4432df1cda670922e50665ba8",
"class_id": 31,
"class_name": "Russia",
"class_hash_image": "74d360208d40665a08243c29bd60031f9e65560983b27754964b7e8a11abef54"
}
]