Seasons By Tournament
This endpoint allows you to retrieve the seasons from a specific tournament.
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 seasons from a specific tournament_idhttps://darts.sportmicro.com/seasons-by-tournament?tournament_id=eq.{tournament_id}
Query Parameters
- tournament_id integer
The id of the tournament
Example: eq.65 - 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
- tournament_id integer
The id of the tournament
Note: This is a Primary Key.
- tournament_name text
The name of the tournament
- seasons jsonb
The seasons
[
{
"tournament_id": 65,
"tournament_name": "PDC World Championship 2026",
"seasons": [
{
"id": 61,
"name": "PDC World Championship 2026",
"year": "25/26"
},
{
"id": 26992,
"name": "PDC World Championship 24/25",
"year": "24/25"
},
{
"id": 28985,
"name": "PDC World Championship 23/24",
"year": "23/24"
},
{
"id": 30036,
"name": "PDC World Championship 22/23",
"year": "22/23"
},
{
"id": 30828,
"name": "PDC World Championship 21/22",
"year": "21/22"
},
{
"id": 31352,
"name": "PDC World Championship 20/21",
"year": "20/21"
},
{
"id": 31732,
"name": "PDC World Championship 19/20",
"year": "19/20"
},
{
"id": 31988,
"name": "PDC World Championship 18/19",
"year": "18/19"
},
{
"id": 32229,
"name": "PDC World Championship 17/18",
"year": "17/18"
},
{
"id": 32509,
"name": "PDC World Championship 16/17",
"year": "16/17"
},
{
"id": 32838,
"name": "PDC World Championship 15/16",
"year": "15/16"
},
{
"id": 33187,
"name": "PDC World Championship 14/15",
"year": "14/15"
},
{
"id": 33497,
"name": "PDC World Championship 13/14",
"year": "13/14"
},
{
"id": 33696,
"name": "PDC World Championship 12/13",
"year": "12/13"
},
{
"id": 33851,
"name": "PDC World Championship 11/12",
"year": "11/12"
},
{
"id": 34019,
"name": "PDC World Championship 10/11",
"year": "10/11"
},
{
"id": 34269,
"name": "PDC World Championship 09/10",
"year": "09/10"
},
{
"id": 34410,
"name": "PDC World Championship 08/09",
"year": "08/09"
}
]
}
]