Skip to main content
GET
https://api.nextsportsapi.com
/
v1
/
football
/
players
Get player statistics
curl --request GET \
  --url https://api.nextsportsapi.com/v1/football/players \
  --header 'Authorization: Bearer <token>'
{
  "get": "football/resource",
  "parameters": {},
  "errors": [],
  "results": 1,
  "paging": {
    "current": 1,
    "total": 1
  },
  "response": [
    {
      "id": 1
    }
  ]
}

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

id
string

NextSportsAPI public identifier returned by this API.

Example:

"L7K9Q2R"

player
string

NextSportsAPI player public identifier.

Example:

"P7Q4N8M"

team
string

NextSportsAPI team public identifier.

Example:

"T3MUN7A"

league
string

NextSportsAPI league public identifier.

Example:

"L7K9Q2R"

season
integer
required

Four-digit season year.

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

2026

Search value. Use at least 3 characters where applicable.

Minimum string length: 3
page
integer
default:1

Page number for paginated endpoints.

Required range: x >= 1

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