Player Profiles

GEThttps://devapi.admin.iotait.tech/api/v1/football/players/profiles

Biographical details for a player, without season statistics.

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

Query parameters

NameTypeExampleDescription
playerinteger100047Player identifier.
searchstringmanchesterPartial name search. Minimum three characters.
pageinteger1Page number of the result set.

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/profiles?player=100047' \
--header 'Accept: application/json' \
--header 'X-API-Key: api_mart_your_key_here'

Response

json
{
    "success": true,
    "data": [
        {
            "id": 100047,
            "name": "Neymar",
            "firstname": "Neymar",
            "lastname": "da Silva Santos Júnior",
            "age": 34,
            "birth": {
                "date": "1992-02-05",
                "place": "Mogi das Cruzes",
                "country": "Brazil"
            },
            "nationality": "Brazil",
            "height": "175",
            "weight": "68",
            "is_injured": false,
            "photo": "https://apinex.iotait.tech/images/players/100047.png",
            "statistics": []
        }
    ],
    "meta": {
        "results": 1,
        "page": 1,
        "total_pages": 1
    }
}