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
langattribute. 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://cricket.sportmicro.com/tournaments
Get tournaments based on the idhttps://cricket.sportmicro.com/tournaments?id=eq.{id}
Get tournaments from a specific league_idhttps://cricket.sportmicro.com/tournaments?league_id=eq.{league_id}
Get tournaments from a specific class_idhttps://cricket.sportmicro.com/tournaments?class_id=eq.{class_id}
Query Parameters
- id integer
The id of the tournament
Example: eq.104804 - league_id integer
The id of the league
Example: eq.2020 - class_id integer
The id of the class
Example: eq.80 - offset string
Default value:
0Limiting and Pagination
Example: 0 - limit string
Default value:
50Limiting and Pagination
Example: 50 - lang string
Default value:
enMulti-language
Example: en
- 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 charactersThe 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 charactersThe name image of the class
[
{
"id": 104804,
"name": "Zimbabwe Women in India, 3 T20I Series",
"importance": 0,
"league_id": 2020,
"league_name": "Twenty20 International Women",
"class_id": 80,
"class_name": "World",
"class_hash_image": "1ffa722e5474f5445688b775f8d5ec6262637f8247f3f989d3c4ba338c3a2b51"
}
]