Seasons
This endpoint allows you to retrieve the seasons.
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 seasonshttps://futsal.sportdevs.com/seasons
Get seasons based on the idhttps://futsal.sportdevs.com/seasons?id=eq.{id}
Get seasons from a specific league_idhttps://futsal.sportdevs.com/seasons?league_id=eq.{league_id}
Query Parameters
- id integer
Default value:
eq.43650The id of the season
- league_id integer
Default value:
eq.16165The id of the league
- offset string
Default value:
0Limiting and Pagination
- limit string
Default value:
50Limiting and Pagination
- lang string
Default value:
enMulti-language
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema array
- id integer
The id of the season
Note: This is a Primary Key.
- name text
The name of the season
- year text
The year of the season
- start_time text
The start time of the season
- end_time text
The end time of the season
- 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 name image of the league
[
{
"id": 43650,
"name": "23/24",
"year": "23/24",
"start_time": "2024-05-11",
"end_time": "2024-05-11",
"league_id": 16165,
"league_name": "A.F. Aveiro 1a Divisão"
}
]