Skip to main content
GET
https://api.nextsportsapi.com
/
v1
/
football
/
fixtures
/
events
Get fixture events
curl --request GET \
  --url https://api.nextsportsapi.com/v1/football/fixtures/events \
  --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

fixture
string
required

NextSportsAPI fixture public identifier.

Example:

"MBH7KQ2"

team
string

NextSportsAPI team public identifier.

Example:

"T3MUN7A"

player
string

NextSportsAPI player public identifier.

Example:

"P7Q4N8M"

type
enum<string>

Competition type.

Available options:
league,
cup

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