Seasons By League
This endpoint allows you to retrieve the seasons from a specific league.
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 league_idhttps://waterpolo.sportdevs.com/seasons-by-league?league_id=eq.{league_id}
Query Parameters
- league_id integer
Default value:
eq.3512
The id of the league
- 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
- 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 text
The hash image of the league
- seasons jsonb
The seasons
[
{
"league_id": 3512,
"league_name": "Liga Nacional",
"league_hash_image": "183e8fe030dc36473e4ee546d83303523e8f994268162e2c4173bb04830a2091",
"seasons": [
{
"id": 12722,
"name": "Liga Nacional 2023",
"year": "2023"
},
{
"id": 13467,
"name": "22/23",
"year": "22/23"
}
]
}
]