Fixture Statistics
GET
https://devapi.admin.iotait.tech/api/v1/football/fixtures/statisticsPossession, shots, corners and the rest of the match statistics per team.
meta.cache reads HIT.Query parameters
| Name | Type | Example | Description |
|---|---|---|---|
fixturerequired | integer | 100088 | Fixture identifier. |
team | integer | 100005 | Team identifier. |
type | string | Goal | Narrows the result to one type. |
half | boolean | true | Split the statistics by half. |
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/statistics?fixture=100088' \
--header 'Accept: application/json' \
--header 'X-API-Key: api_mart_your_key_here'Response
json
{
"success": true,
"data": [
{
"team": {
"id": 100005,
"name": "Manchester United",
"logo": "https://apinex.iotait.tech/images/teams/100005.png"
},
"statistics": [
{
"type": "Shots on Goal",
"value": 5
},
{
"type": "Shots off Goal",
"value": 7
},
{
"type": "Total Shots",
"value": 14
},
{
"type": "Blocked Shots",
"value": 2
},
{
"type": "Shots insidebox",
"value": 7
},
{
"type": "Shots outsidebox",
"value": 7
},
{
"type": "Fouls",
"value": 12
},
{
"type": "Corner Kicks",
"value": 7
},
{
"type": "Offsides",
"value": 3
},
{
"type": "Ball Possession",
"value": "55%"
},
{
"type": "Yellow Cards",
"value": 2
},
{
"type": "Red Cards",
"value": null
},
{
"type": "Goalkeeper Saves",
"value": 2
},
{
"type": "Total passes",
"value": 482
},
{
"type": "Passes accurate",
"value": 408
},
{
"type": "Passes %",
"value": "85%"
},
{
"type": "expected_goals",
"value": "2.43"
},
{
"type": "goals_prevented",
"value": "1.07"
}
]
}
],
"meta": {
"results": 2,
"page": 1,
"total_pages": 1
}
}