Get fixture events
curl --request GET \
--url https://api.nextsportsapi.com/v1/football/fixtures/events \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.nextsportsapi.com/v1/football/fixtures/events"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.nextsportsapi.com/v1/football/fixtures/events', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"get": "football/resource",
"parameters": {},
"errors": [],
"results": 1,
"paging": {
"current": 1,
"total": 1
},
"response": [
{
"id": 1
}
]
}{
"get": "football/standings",
"parameters": {},
"errors": [
{
"code": "validation.required_parameter",
"message": "The season parameter is required.",
"param": "season"
}
],
"results": 0,
"paging": {
"current": 1,
"total": 1
},
"response": []
}{
"get": "football/standings",
"parameters": {},
"errors": [
{
"code": "validation.required_parameter",
"message": "The season parameter is required.",
"param": "season"
}
],
"results": 0,
"paging": {
"current": 1,
"total": 1
},
"response": []
}{
"get": "football/standings",
"parameters": {},
"errors": [
{
"code": "validation.required_parameter",
"message": "The season parameter is required.",
"param": "season"
}
],
"results": 0,
"paging": {
"current": 1,
"total": 1
},
"response": []
}{
"get": "football/standings",
"parameters": {},
"errors": [
{
"code": "validation.required_parameter",
"message": "The season parameter is required.",
"param": "season"
}
],
"results": 0,
"paging": {
"current": 1,
"total": 1
},
"response": []
}{
"get": "football/standings",
"parameters": {},
"errors": [
{
"code": "validation.required_parameter",
"message": "The season parameter is required.",
"param": "season"
}
],
"results": 0,
"paging": {
"current": 1,
"total": 1
},
"response": []
}{
"get": "football/standings",
"parameters": {},
"errors": [
{
"code": "validation.required_parameter",
"message": "The season parameter is required.",
"param": "season"
}
],
"results": 0,
"paging": {
"current": 1,
"total": 1
},
"response": []
}Get fixture events
Returns goals, cards, substitutions, VAR events, and other match events for a fixture.
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>'import requests
url = "https://api.nextsportsapi.com/v1/football/fixtures/events"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.nextsportsapi.com/v1/football/fixtures/events', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"get": "football/resource",
"parameters": {},
"errors": [],
"results": 1,
"paging": {
"current": 1,
"total": 1
},
"response": [
{
"id": 1
}
]
}{
"get": "football/standings",
"parameters": {},
"errors": [
{
"code": "validation.required_parameter",
"message": "The season parameter is required.",
"param": "season"
}
],
"results": 0,
"paging": {
"current": 1,
"total": 1
},
"response": []
}{
"get": "football/standings",
"parameters": {},
"errors": [
{
"code": "validation.required_parameter",
"message": "The season parameter is required.",
"param": "season"
}
],
"results": 0,
"paging": {
"current": 1,
"total": 1
},
"response": []
}{
"get": "football/standings",
"parameters": {},
"errors": [
{
"code": "validation.required_parameter",
"message": "The season parameter is required.",
"param": "season"
}
],
"results": 0,
"paging": {
"current": 1,
"total": 1
},
"response": []
}{
"get": "football/standings",
"parameters": {},
"errors": [
{
"code": "validation.required_parameter",
"message": "The season parameter is required.",
"param": "season"
}
],
"results": 0,
"paging": {
"current": 1,
"total": 1
},
"response": []
}{
"get": "football/standings",
"parameters": {},
"errors": [
{
"code": "validation.required_parameter",
"message": "The season parameter is required.",
"param": "season"
}
],
"results": 0,
"paging": {
"current": 1,
"total": 1
},
"response": []
}{
"get": "football/standings",
"parameters": {},
"errors": [
{
"code": "validation.required_parameter",
"message": "The season parameter is required.",
"param": "season"
}
],
"results": 0,
"paging": {
"current": 1,
"total": 1
},
"response": []
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
NextSportsAPI fixture public identifier.
Example:
"MBH7KQ2"
NextSportsAPI team public identifier.
Example:
"T3MUN7A"
NextSportsAPI player public identifier.
Example:
"P7Q4N8M"
Competition type.
Available options:
league, cup Last modified on May 20, 2026
⌘I