Tournaments
This endpoint allows you to retrieve the tournaments.
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 tournamentshttps://basketball.sportdevs.com/tournaments
Get tournaments based on the idhttps://basketball.sportdevs.com/tournaments?id=eq.{id}
Get tournaments from a specific league_idhttps://basketball.sportdevs.com/tournaments?league_id=eq.{league_id}
Get tournaments from a specific class_idhttps://basketball.sportdevs.com/tournaments?class_id=eq.{class_id}
Query Parameters
- id integer
Default value:
eq.710
The id of the tournament
- league_id integer
Default value:
eq.2227
The id of the league
- class_id integer
Default value:
eq.44
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 tournament
Note: This is a Primary Key.
- name text
The name of the tournament
- importance integer
The importance level of the tournament
- 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 character varying
Possible values:
<= 64 characters
The name image of the league
- 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": 710,
"name": "LNB, Women",
"importance": 0,
"league_id": 2227,
"league_name": "LNB, Women",
"league_hash_image": "03126c4afe7250d95e5b7b01ba08a74d409a34a32317ed71a0368e9f07bc27c4",
"class_id": 44,
"class_name": "Romania",
"class_hash_image": "22a87756640ac0debef6f434508bb545e69b43270f646d36c122128583fe06ea"
}
]