Skip to main content
GET
https://api.nextsportsapi.com
/
v1
/
football
/
countries
Get countries
curl --request GET \
  --url https://api.nextsportsapi.com/v1/football/countries \
  --header 'Authorization: Bearer <token>'
{
  "get": "football/countries",
  "parameters": {
    "name": "England"
  },
  "errors": [],
  "results": 1,
  "paging": {
    "current": 1,
    "total": 1
  },
  "response": [
    {
      "name": "England",
      "code": "GB-ENG",
      "flag": "https://media.nextsportsapi.com/flags/gb-eng.svg"
    }
  ]
}

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

name
string

Exact or partial resource name.

code
string

Country code.

Search value. Use at least 3 characters where applicable.

Minimum string length: 3

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