GET tournaments
Retrieves a list of tournaments based on the specified sport and language.
Endpoint
GET /v4/tournamentsRequest Parameters
- sportId
(number)* — The ID of the sport for which tournaments are being requested. For example:10. - language
(a2)— (Optional) The language in which the tournament information should be returned. By default, the value isenfor English.
Example Request
GET /v4/tournaments?sportId=10&language=enExample Response
[
{
"tournamentId": 1,
"tournamentSlug": "uefa-euro",
"tournamentName": "UEFA Euro",
"categorySlug": "international",
"categoryName": "International",
"futureFixtures": 0,
"upcomingFixtures": 0,
"liveFixtures": 0
},
{
"tournamentId": 7,
"tournamentSlug": "uefa-champions-league",
"tournamentName": "UEFA Champions League",
"categorySlug": "international-clubs",
"categoryName": "International Clubs",
"futureFixtures": 108,
"upcomingFixtures": 0,
"liveFixtures": 0
},
{
"tournamentId": 8,
"tournamentSlug": "laliga",
"tournamentName": "LaLiga",
"categorySlug": "spain",
"categoryName": "Spain",
"futureFixtures": 300,
"upcomingFixtures": 0,
"liveFixtures": 0
}
]Response (200 OK)
On a successful request, the server responds with a status code 200 and returns a JSON array containing tournament information. Each object in the array contains the following fields:
- tournamentId
(number)— A unique identifier for the tournament. - tournamentSlug
(string)— A URL-friendly version of the tournament name. - tournamentName
(string)— The name of the tournament. - categorySlug
(string)— A URL-friendly version of the category name. - categoryName
(string)— The name of the category to which the tournament belongs. - futureFixtures
(number)— Amount of fixtures starting more than 24 hours from now. - upcomingFixtures
(number)— Amount of fixtures starting less than 24 hours from now. - liveFixtures
(number)— Amount of fixtures currently in-play.
Notes
- Endpoint cooldown: 1000ms
- Ensure that the
sportIdis valid to receive relevant tournament data. - The response will be an array, which may be empty if no tournaments are found for the given parameters.
Previous pageGET bookmakers
Next pageGET fixtures
