Top Red Cards
GET
https://devapi.admin.iotait.tech/api/v1/football/players/top-red-cardsPlayers with the most red cards in a 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. |
Example request
Paste this straight into Postman with Import → Raw text.
curl
curl --location --request GET 'https://devapi.admin.iotait.tech/api/v1/football/players/top-red-cards?competition=100090&season=2026' \
--header 'Accept: application/json' \
--header 'X-API-Key: api_mart_your_key_here'Response
json
{
"success": true,
"data": [
{
"id": 100076,
"name": "C. Romero",
"firstname": "Cristian Gabriel",
"lastname": "Romero",
"age": 27,
"birth": {
"date": "1998-04-27",
"place": "Córdoba",
"country": "Argentina"
},
"nationality": "Argentina",
"height": "185",
"weight": "78",
"is_injured": false,
"photo": "https://apinex.iotait.tech/images/players/100076.png",
"statistics": [
{
"team": {
"id": 100042,
"name": "Tottenham",
"logo": "https://apinex.iotait.tech/images/teams/100042.png"
},
"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"
},
"games": {
"appearances": 23,
"lineups": 22,
"minutes": 1872,
"number": 17,
"position": "Defender",
"rating": "7.13",
"captain": false
},
"substitutes": {
"in": 1,
"out": 5,
"bench": 1
},
"shots": {
"total": 15,
"on": 6
},
"goals": {
"total": 4,
"conceded": 0,
"assists": 1,
"saves": null
},
"passes": {
"total": 1128,
"key": 12,
"accuracy": 87
},
"tackles": {
"total": 58,
"blocks": 14,
"interceptions": 31
},
"duels": {
"total": 234,
"won": 155
},
"dribbles": {
"attempts": 10,
"success": 8,
"past": null
},
"fouls": {
"drawn": 16,
"committed": 32
},
"cards": {
"yellow": 10,
"yellowred": 1,
"red": 1
},
"penalty": {
"won": null,
"commited": null,
"scored": 0,
"missed": 0,
"saved": null
}
}
]
}
],
"meta": {
"results": 20,
"page": 1,
"total_pages": 1
}
}