Skip to main content
GET
https://api.nextsportsapi.com
/
v1
/
football
/
timezone
Get available timezones
curl --request GET \
  --url https://api.nextsportsapi.com/v1/football/timezone \
  --header 'Authorization: Bearer <token>'
{
  "get": "football/timezone",
  "parameters": [],
  "errors": [],
  "results": 3,
  "paging": {
    "current": 1,
    "total": 1
  },
  "response": [
    "UTC",
    "Europe/London",
    "Asia/Tokyo"
  ]
}

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
string[]
required
Last modified on May 20, 2026