Team Statistics
GET
https://devapi.admin.iotait.tech/api/v1/football/teams/statisticsA team's record across one competition and season.
meta.cache reads HIT.Query parameters
| Name | Type | Example | Description |
|---|---|---|---|
competitionrequired | integer | 100090 | Competition identifier, from the competitions endpoint. |
seasonrequired | integer | 2026 | Season, as a four digit start year. |
teamrequired | integer | 100005 | Team identifier. |
date | string | 2026-08-30 | A single day, as YYYY-MM-DD. |
Example request
Paste this straight into Postman with Import → Raw text.
curl
curl --location --request GET 'https://devapi.admin.iotait.tech/api/v1/football/teams/statistics?competition=100090&season=2026&team=100005' \
--header 'Accept: application/json' \
--header 'X-API-Key: api_mart_your_key_here'Response
json
{
"success": true,
"data": {
"competition": {
"id": 100001,
"name": "Premier League",
"season": 2025,
"country": "England",
"logo": "https://apinex.iotait.tech/images/competitions/100001.png",
"flag": "https://apinex.iotait.tech/images/flags/gb-eng.svg"
},
"team": {
"id": 100005,
"name": "Manchester United",
"logo": "https://apinex.iotait.tech/images/teams/100005.png"
},
"form": "LDWLWLWWWDDLWDWDLWDDDWWWWDWWLWDLWWWDWW",
"fixtures": {
"played": {
"home": 19,
"away": 19,
"total": 38
},
"won": {
"home": 13,
"away": 7,
"total": 20
},
"drawn": {
"home": 3,
"away": 8,
"total": 11
},
"lost": {
"home": 3,
"away": 4,
"total": 7
}
},
"goals": {
"for": {
"total": {
"home": 39,
"away": 30,
"total": 69
},
"average": {
"home": "2.1",
"away": "1.6",
"total": "1.8"
},
"minute": {
"0-15": {
"total": 9,
"percentage": "13.24%"
},
"16-30": {
"total": 7,
"percentage": "10.29%"
},
"31-45": {
"total": 14,
"percentage": "20.59%"
},
"46-60": {
"total": 12,
"percentage": "17.65%"
},
"61-75": {
"total": 10,
"percentage": "14.71%"
},
"76-90": {
"total": 16,
"percentage": "23.53%"
},
"91-105": {
"total": null,
"percentage": null
},
"106-120": {
"total": null,
"percentage": null
}
},
"under_over": [
{
"over": 34,
"under": 4
},
{
"over": 22,
"under": 16
},
{
"over": 10,
"under": 28
},
{
"over": 3,
"under": 35
},
{
"over": 0,
"under": 38
}
]
},
"against": {
"total": {
"home": 24,
"away": 26,
"total": 50
},
"average": {
"home": "1.3",
"away": "1.4",
"total": "1.3"
},
"minute": {
"0-15": {
"total": 4,
"percentage": "7.84%"
},
"16-30": {
"total": 5,
"percentage": "9.80%"
},
"31-45": {
"total": 6,
"percentage": "11.76%"
},
"46-60": {
"total": 12,
"percentage": "23.53%"
},
"61-75": {
"total": 9,
"percentage": "17.65%"
},
"76-90": {
"total": 15,
"percentage": "29.41%"
},
"91-105": {
"total": null,
"percentage": null
},
"106-120": {
"total": null,
"percentage": null
}
},
"under_over": [
{
"over": 30,
"under": 8
},
{
"over": 16,
"under": 22
},
{
"over": 3,
"under": 35
},
{
"over": 1,
"under": 37
},
{
"over": 0,
"under": 38
}
]
}
},
"biggest": {
"streak": {
"wins": 4,
"draws": 3,
"loses": 1
},
"wins": {
"home": "4-2",
"away": "1-4"
},
"loses": {
"home": "1-2",
"away": "3-0"
},
"goals": {
"for": {
"home": 4,
"away": 4
},
"against": {
"home": 4,
"away": 3
}
}
},
"clean_sheets": {
"home": 4,
"away": 4,
"total": 8
},
"failed_to_score": {
"home": 2,
"away": 2,
"total": 4
},
"penalties": {
"scored": {
"total": 4,
"percentage": "100.00%"
},
"missed": {
"total": 0,
"percentage": "0%"
},
"total": 4
},
"lineups": [
{
"formation": "4-2-3-1",
"played": 20
},
{
"formation": "3-4-2-1",
"played": 18
}
],
"cards": {
"yellow": {
"0-15": {
"total": 3,
"percentage": "4.69%"
},
"16-30": {
"total": 6,
"percentage": "9.38%"
},
"31-45": {
"total": 8,
"percentage": "12.50%"
},
"46-60": {
"total": 14,
"percentage": "21.88%"
},
"61-75": {
"total": 9,
"percentage": "14.06%"
},
"76-90": {
"total": 13,
"percentage": "20.31%"
},
"91-105": {
"total": 11,
"percentage": "17.19%"
},
"106-120": {
"total": null,
"percentage": null
}
},
"red": {
"0-15": {
"total": null,
"percentage": null
},
"16-30": {
"total": null,
"percentage": null
},
"31-45": {
"total": null,
"percentage": null
},
"46-60": {
"total": 2,
"percentage": "66.67%"
},
"61-75": {
"total": null,
"percentage": null
},
"76-90": {
"total": 1,
"percentage": "33.33%"
},
"91-105": {
"total": null,
"percentage": null
},
"106-120": {
"total": null,
"percentage": null
}
}
}
},
"meta": {
"results": 11,
"page": 1,
"total_pages": 1
}
}