Skip to main content
GET
https://api.nextsportsapi.com
/
v1
/
football
/
standings
Get standings
curl --request GET \
  --url https://api.nextsportsapi.com/v1/football/standings \
  --header 'Authorization: Bearer <token>'
{
  "get": "football/standings",
  "parameters": {
    "league": "L7K9Q2R",
    "season": "2026"
  },
  "errors": [],
  "results": 1,
  "paging": {
    "current": 1,
    "total": 1
  },
  "response": [
    {
      "league": {
        "id": "L7K9Q2R",
        "name": "Premier League",
        "country": "England",
        "season": 2026,
        "standings": [
          [
            {
              "rank": 1,
              "team": {
                "id": "T8LIV4B",
                "name": "Liverpool",
                "logo": "https://media.nextsportsapi.com/football/teams/40.png"
              },
              "points": 70,
              "goalsDiff": 41,
              "group": "Premier League",
              "form": "WWWWW",
              "status": "same",
              "all": {
                "played": 24,
                "win": 23,
                "draw": 1,
                "lose": 0,
                "goals": {
                  "for": 56,
                  "against": 15
                }
              },
              "update": "2026-01-29T00:00:00+00:00"
            }
          ]
        ]
      }
    }
  ]
}

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.

Query Parameters

league
string

NextSportsAPI league public identifier.

Example:

"L7K9Q2R"

season
integer
required

Four-digit season year.

Required range: 1900 <= x <= 2200
Example:

2026

team
string

NextSportsAPI team public identifier.

Example:

"T3MUN7A"

Response

Successful response.

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