Skip to main content
GET
/
seasons
List Seasons
curl --request GET \
  --url https://padelapi.org/api/seasons \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "self": "<string>",
      "name": "<string>",
      "url": "<string>",
      "tournaments_count": 123,
      "status": "<string>",
      "start_date": "<string>",
      "end_date": "<string>",
      "year": "<string>",
      "connections": {
        "tournaments": "<string>"
      }
    }
  ],
  "links": {
    "first": "<string>",
    "last": "<string>",
    "prev": "<string>",
    "next": "<string>"
  },
  "meta": {
    "current_page": 123,
    "from": 123,
    "last_page": 123,
    "links": [
      {
        "url": "<string>",
        "label": "<string>",
        "active": true
      }
    ],
    "path": "<string>",
    "per_page": 123,
    "to": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

year
integer | null

Year of the season to filter by.

Required range: 2023 <= x <= 2026

Response

Paginated set of SeasonResource

data
SeasonResource ยท object[]
required
meta
object
required