Transfers

GEThttps://devapi.admin.iotait.tech/api/v1/football/transfers

Transfer history for a player or a team.

Freshness — cached for 1 hour. 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.
teaminteger100005Team identifier.

Example request

Paste this straight into Postman with Import → Raw text.

curl
curl --location --request GET 'https://devapi.admin.iotait.tech/api/v1/football/transfers?player=100047' \
--header 'Accept: application/json' \
--header 'X-API-Key: api_mart_your_key_here'

Response

json
{
    "success": true,
    "data": [
        {
            "player": {
                "id": 100047,
                "name": "Neymar",
                "photo": "https://apinex.iotait.tech/images/players/100047.png"
            },
            "updated_at": "2026-02-09T00:43:31+00:00",
            "transfers": [
                {
                    "date": "2023-08-15",
                    "type": "€ 80M",
                    "from": {
                        "id": 100078,
                        "name": "Paris Saint Germain",
                        "logo": "https://apinex.iotait.tech/images/teams/100078.png"
                    },
                    "to": {
                        "id": 100079,
                        "name": "Al-Hilal Saudi FC",
                        "logo": "https://apinex.iotait.tech/images/teams/100079.png"
                    }
                },
                {
                    "date": "2017-08-03",
                    "type": "€ 222M",
                    "from": {
                        "id": 100080,
                        "name": "Barcelona",
                        "logo": "https://apinex.iotait.tech/images/teams/100080.png"
                    },
                    "to": {
                        "id": 100078,
                        "name": "Paris Saint Germain",
                        "logo": "https://apinex.iotait.tech/images/teams/100078.png"
                    }
                },
                {
                    "date": "2013-07-01",
                    "type": "€ 88.2M",
                    "from": {
                        "id": 100048,
                        "name": "Santos",
                        "logo": "https://apinex.iotait.tech/images/teams/100048.png"
                    },
                    "to": {
                        "id": 100080,
                        "name": "Barcelona",
                        "logo": "https://apinex.iotait.tech/images/teams/100080.png"
                    }
                },
                {
                    "date": "2025-01-31",
                    "type": "Free Transfer",
                    "from": {
                        "id": 100079,
                        "name": "Al-Hilal Saudi FC",
                        "logo": "https://apinex.iotait.tech/images/teams/100079.png"
                    },
                    "to": {
                        "id": 100048,
                        "name": "Santos",
                        "logo": "https://apinex.iotait.tech/images/teams/100048.png"
                    }
                },
                {
                    "date": "2025-01-29",
                    "type": "Free agent",
                    "from": {
                        "id": 100079,
                        "name": "Al-Hilal Saudi FC",
                        "logo": "https://apinex.iotait.tech/images/teams/100079.png"
                    },
                    "to": {
                        "id": 100048,
                        "name": "Santos",
                        "logo": "https://apinex.iotait.tech/images/teams/100048.png"
                    }
                }
            ]
        }
    ],
    "meta": {
        "results": 1,
        "page": 1,
        "total_pages": 1
    }
}