Top Assists
GET
https://devapi.admin.iotait.tech/api/v1/football/players/top-assistsLeading assist providers for 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-assists?competition=100090&season=2026' \
--header 'Accept: application/json' \
--header 'X-API-Key: api_mart_your_key_here'Response
json
{
"success": true,
"data": [
{
"id": 100017,
"name": "Bruno Fernandes",
"firstname": "Bruno Miguel",
"lastname": "Borges Fernandes",
"age": 31,
"birth": {
"date": "1994-09-08",
"place": "Maia",
"country": "Portugal"
},
"nationality": "Portugal",
"height": "179",
"weight": "66",
"is_injured": false,
"photo": "https://apinex.iotait.tech/images/players/100017.png",
"statistics": [
{
"team": {
"id": 100005,
"name": "Manchester United",
"logo": "https://apinex.iotait.tech/images/teams/100005.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": 35,
"lineups": 35,
"minutes": 3066,
"number": null,
"position": "Midfielder",
"rating": "7.617142",
"captain": false
},
"substitutes": {
"in": 0,
"out": null,
"bench": null
},
"shots": {
"total": 55,
"on": 24
},
"goals": {
"total": 9,
"conceded": 0,
"assists": 21,
"saves": null
},
"passes": {
"total": 1995,
"key": 137,
"accuracy": 46
},
"tackles": {
"total": 54,
"blocks": 5,
"interceptions": 20
},
"duels": {
"total": 272,
"won": 124
},
"dribbles": {
"attempts": 36,
"success": 15,
"past": null
},
"fouls": {
"drawn": 35,
"committed": 25
},
"cards": {
"yellow": 5,
"yellowred": null,
"red": 0
},
"penalty": {
"won": null,
"commited": null,
"scored": 4,
"missed": 2,
"saved": null
}
}
]
}
],
"meta": {
"results": 20,
"page": 1,
"total_pages": 1
}
}