Fixture Statistics

GEThttps://devapi.admin.iotait.tech/api/v1/football/fixtures/statistics

Possession, shots, corners and the rest of the match statistics per team.

Freshness — cached for 1 minute. Repeating the same query inside that window is answered from cache in single digit milliseconds, and meta.cache reads HIT.

Query parameters

NameTypeExampleDescription
fixturerequiredinteger100088Fixture identifier.
teaminteger100005Team identifier.
typestringGoalNarrows the result to one type.
halfbooleantrueSplit 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
    }
}