Skip to main content
GET
https://api.nextsportsapi.com
/
v1
/
football
/
leagues
/
seasons
Get available seasons
curl --request GET \
  --url https://api.nextsportsapi.com/v1/football/leagues/seasons \
  --header 'Authorization: Bearer <token>'
{
  "get": "football/leagues/seasons",
  "parameters": [],
  "errors": [],
  "results": 4,
  "paging": {
    "current": 1,
    "total": 1
  },
  "response": [
    2023,
    2024,
    2025,
    2026
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.nextsportsapi.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Response

Successful response.

get
string
required
parameters
required
errors
object[]
required
results
integer
required
Required range: x >= 0
paging
object
required
response
integer[]
required
Last modified on May 20, 2026