Fixture Lineups

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

Starting eleven, substitutes, formation and coach for a match.

Freshness — cached for 5 minutes. 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.
playerinteger100047Player identifier.
typestringGoalNarrows the result to one type.

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/lineups?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"
            },
            "formation": "4-2-3-1",
            "coach": {
                "id": 100007,
                "name": "E. ten Hag",
                "photo": "https://apinex.iotait.tech/images/coaches/100007.png"
            },
            "starting_eleven": [
                {
                    "id": 100008,
                    "name": "A. Onana",
                    "number": 24,
                    "position": "G",
                    "grid": "1:1"
                },
                {
                    "id": 100009,
                    "name": "N. Mazraoui",
                    "number": 3,
                    "position": "D",
                    "grid": "2:4"
                },
                {
                    "id": 100010,
                    "name": "H. Maguire",
                    "number": 5,
                    "position": "D",
                    "grid": "2:3"
                },
                {
                    "id": 100011,
                    "name": "Lisandro Martínez",
                    "number": 6,
                    "position": "D",
                    "grid": "2:2"
                },
                {
                    "id": 100012,
                    "name": "Diogo Dalot",
                    "number": 20,
                    "position": "D",
                    "grid": "2:1"
                },
                {
                    "id": 100013,
                    "name": "Casemiro",
                    "number": 18,
                    "position": "M",
                    "grid": "3:2"
                },
                {
                    "id": 100014,
                    "name": "K. Mainoo",
                    "number": 37,
                    "position": "M",
                    "grid": "3:1"
                },
                {
                    "id": 100015,
                    "name": "A. Diallo",
                    "number": 16,
                    "position": "M",
                    "grid": "4:3"
                },
                {
                    "id": 100006,
                    "name": "M. Mount",
                    "number": 7,
                    "position": "M",
                    "grid": "4:2"
                },
                {
                    "id": 100016,
                    "name": "M. Rashford",
                    "number": 10,
                    "position": "M",
                    "grid": "4:1"
                },
                {
                    "id": 100017,
                    "name": "Bruno Fernandes",
                    "number": 8,
                    "position": "F",
                    "grid": "5:1"
                }
            ],
            "substitutes": [
                {
                    "id": 100018,
                    "name": "A. Garnacho",
                    "number": 17,
                    "position": "F",
                    "grid": null
                },
                {
                    "id": 100019,
                    "name": "J. Zirkzee",
                    "number": 11,
                    "position": "F",
                    "grid": null
                },
                {
                    "id": 100020,
                    "name": "M. de Ligt",
                    "number": 4,
                    "position": "D",
                    "grid": null
                },
                {
                    "id": 100021,
                    "name": "J. Evans",
                    "number": 35,
                    "position": "D",
                    "grid": null
                },
                {
                    "id": 100022,
                    "name": "S. McTominay",
                    "number": 39,
                    "position": "M",
                    "grid": null
                },
                {
                    "id": 100023,
                    "name": "C. Eriksen",
                    "number": 14,
                    "position": "M",
                    "grid": null
                },
                {
                    "id": 100024,
                    "name": "T. Collyer",
                    "number": 43,
                    "position": "M",
                    "grid": null
                },
                {
                    "id": 100025,
                    "name": "Antony",
                    "number": 21,
                    "position": "F",
                    "grid": null
                },
                {
                    "id": 100026,
                    "name": "A. Bayındır",
                    "number": 1,
                    "position": "G",
                    "grid": null
                }
            ]
        }
    ],
    "meta": {
        "results": 2,
        "page": 1,
        "total_pages": 1
    }
}