Seasons

Field Definitions

FieldTypeDescription
idintegerUnique identifier for the specific league season.
namestringThe display name of the season (e.g., "2025/2026").
daysarray[string]A list of dates where at least one match is scheduled.

Date Format

The dates within the days array are strings formatted according to ISO 8601 standards (YYYY-MM-DD).


Example JSON Response

{
  "seasons": [
    {
      "id": 17004,
      "name": "2025/2026",
      "days": [
        "2025-09-11",
        "2025-09-12",
        "2025-09-13"
      ]
    },
    {
      "id": 14489,
      "name": "2024/2025",
      "days": [
        "2024-08-19",
        "2024-08-20"
      ]
    }
  ]
}