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
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 seasons from a specific tournament_idhttps://rugby.sportdevs.com/seasons-by-tournament?tournament_id=eq.{tournament_id}
Query Parameters
- tournament_id integer
Default value:
eq.958
The id of the tournament
- 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
- 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": 958,
"tournament_name": "NRL, Playoffs",
"seasons": [
{
"id": 12226,
"name": "NRL 2023",
"year": "2023"
},
{
"id": 14811,
"name": "NRL 2022",
"year": "2022"
},
{
"id": 16126,
"name": "NRL 2021",
"year": "2021"
},
{
"id": 17181,
"name": "NRL 2020",
"year": "2020"
},
{
"id": 17800,
"name": "NRL 2019",
"year": "2019"
},
{
"id": 18455,
"name": "NRL 2018",
"year": "2018"
},
{
"id": 19060,
"name": "NRL 2017",
"year": "2017"
},
{
"id": 19690,
"name": "NRL 2016",
"year": "2016"
},
{
"id": 20277,
"name": "NRL 2015",
"year": "2015"
},
{
"id": 20704,
"name": "NRL 2014",
"year": "2014"
},
{
"id": 21256,
"name": "NRL 2013",
"year": "2013"
},
{
"id": 21379,
"name": "NRL 2012",
"year": "2012"
},
{
"id": 21584,
"name": "NRL 2011",
"year": "2011"
},
{
"id": 21952,
"name": "NRL 2010",
"year": "2010"
},
{
"id": 22339,
"name": "NRL 2009",
"year": "2009"
},
{
"id": 22600,
"name": "NRL 2008",
"year": "2008"
},
{
"id": 22803,
"name": "NRL 2007",
"year": "2007"
},
{
"id": 39822,
"name": "NRL 2024",
"year": "2024"
}
]
}
]