Fixture Events
GET
https://devapi.admin.iotait.tech/api/v1/football/fixtures/eventsGoals, cards, substitutions and VAR decisions within a match.
meta.cache reads HIT.Query parameters
| Name | Type | Example | Description |
|---|---|---|---|
fixturerequired | integer | 100088 | Fixture identifier. |
team | integer | 100005 | Team identifier. |
player | integer | 100047 | Player identifier. |
type | string | Goal | Narrows the result to one type. |
Example request
Paste this straight into Postman with Import → Raw text.
curl
curl --location --request GET 'https://devapi.admin.iotait.tech/api/v1/football/fixtures/events?fixture=100088' \
--header 'Accept: application/json' \
--header 'X-API-Key: api_mart_your_key_here'Response
json
{
"success": true,
"data": [
{
"minute": 18,
"minute_extra": null,
"type": "Card",
"detail": "Yellow Card",
"comments": "Foul",
"team": {
"id": 100005,
"name": "Manchester United",
"logo": "https://apinex.iotait.tech/images/teams/100005.png"
},
"player": {
"id": 100006,
"name": "Mason Mount",
"photo": "https://apinex.iotait.tech/images/players/100006.png"
},
"assist": null
}
],
"meta": {
"results": 16,
"page": 1,
"total_pages": 1
}
}