Transfermarkt Scraper

ENDPOINTS
GET/clubs/transfer-records

Club Transfer Records

The club's record arrivals or departures ranked by fee, all-time or for one season.

QUERY PARAMS

Transfermarkt club ID or any transfermarkt.com club URL (national teams are clubs too).

Examples:

  • ID: 418
  • URL: https://www.transfermarkt.com/real-madrid/startseite/verein/418

Which records to return.

Default: arrivals

Allowed values: arrivals, departures

Season start year or name — 2025, 25/26 and 2025/26 all mean the 2025/26 season.

Default: all-time records

{
  "club_id": 418,
  "type": "arrivals",
  "season": null,
  "count": 25,
  "transfers": [
    {
      "rank": 1,
      "player": {
        "id": 581678,
        "name": "Jude Bellingham",
        "link": "https://www.transfermarkt.com/jude-bellingham/profil/spieler/581678",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/581678-1748102891.jpg?lm=4711"
      },
      "position": "Attacking Midfield",
      "age": 20,
      "nationalities": [
        {
          "id": 189,
          "name": "England",
          "code": "ENG"
        },
        {
          "id": 72,
          "name": "Ireland",
          "code": "IRL"
        }
      ],
      "season": {
        "id": 2023,
        "name": "23/24"
      },
      "from_club": {
        "id": 16,
        "name": "Borussia Dortmund",
        "link": "https://www.transfermarkt.com/borussia-dortmund/startseite/verein/16",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/16.png?lm=1789459167",
        "competition": {
          "id": "L1",
          "name": "Bundesliga",
          "link": "https://www.transfermarkt.com/bundesliga/startseite/wettbewerb/L1",
          "logo": null
        }
      },
      "fee": {
        "amount": 127000000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 2,
      "player": {
        "id": 1390649,
        "name": "Yan Diomande",
        "link": "https://www.transfermarkt.com/yan-diomande/profil/spieler/1390649",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/1390649-1759779499.jpg?lm=4711"
      },
      "position": "Right Winger",
      "age": 19,
      "nationalities": [
        {
          "id": 38,
          "name": "Cote d'Ivoire",
          "code": "CIV"
        }
      ],
      "season": {
        "id": 2026,
        "name": "26/27"
      },
      "from_club": {
        "id": 23826,
        "name": "RB Leipzig",
        "link": "https://www.transfermarkt.com/rasenballsport-leipzig/startseite/verein/23826",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/23826.png?lm=1789460400",
        "competition": {
          "id": "L1",
          "name": "Bundesliga",
          "link": "https://www.transfermarkt.com/bundesliga/startseite/wettbewerb/L1",
          "logo": null
        }
      },
      "fee": {
        "amount": 125000000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 3,
      "player": {
        "id": 50202,
        "name": "Eden Hazard",
        "link": "https://www.transfermarkt.com/eden-hazard/profil/spieler/50202",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/50202-1665067742.jpg?lm=4711"
      },
      "position": "Left Winger",
      "age": 28,
      "nationalities": [
        {
          "id": 19,
          "name": "Belgium",
          "code": "BEL"
        }
      ],
      "season": {
        "id": 2019,
        "name": "19/20"
      },
      "from_club": {
        "id": 631,
        "name": "Chelsea FC",
        "link": "https://www.transfermarkt.com/fc-chelsea/startseite/verein/631",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/631_1782931436.png?lm=1789459205",
        "competition": {
          "id": "GB1",
          "name": "Premier League",
          "link": "https://www.transfermarkt.com/premier-league/startseite/wettbewerb/GB1",
          "logo": null
        }
      },
      "fee": {
        "amount": 120800000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 4,
      "player": {
        "id": 39381,
        "name": "Gareth Bale",
        "link": "https://www.transfermarkt.com/gareth-bale/profil/spieler/39381",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/39381-1658665343.jpg?lm=4711"
      },
      "position": "Right Winger",
      "age": 24,
      "nationalities": [
        {
          "id": 191,
          "name": "Wales",
          "code": "WAL"
        }
      ],
      "season": {
        "id": 2013,
        "name": "13/14"
      },
      "from_club": {
        "id": 148,
        "name": "Tottenham Hotspur",
        "link": "https://www.transfermarkt.com/tottenham-hotspur/startseite/verein/148",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/148_1732012045.png?lm=1789459175",
        "competition": {
          "id": "GB1",
          "name": "Premier League",
          "link": "https://www.transfermarkt.com/premier-league/startseite/wettbewerb/GB1",
          "logo": null
        }
      },
      "fee": {
        "amount": 101000000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 5,
      "player": {
        "id": 8198,
        "name": "Cristiano Ronaldo",
        "link": "https://www.transfermarkt.com/cristiano-ronaldo/profil/spieler/8198",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/8198-1748102259.jpg?lm=4711"
      },
      "position": "Centre-Forward",
      "age": 24,
      "nationalities": [
        {
          "id": 136,
          "name": "Portugal",
          "code": "POR"
        }
      ],
      "season": {
        "id": 2009,
        "name": "09/10"
      },
      "from_club": {
        "id": 985,
        "name": "Manchester United",
        "link": "https://www.transfermarkt.com/manchester-united/startseite/verein/985",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/985.png?lm=1789459227",
        "competition": {
          "id": "GB1",
          "name": "Premier League",
          "link": "https://www.transfermarkt.com/premier-league/startseite/wettbewerb/GB1",
          "logo": null
        }
      },
      "fee": {
        "amount": 94000000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 6,
      "player": {
        "id": 413112,
        "name": "Aurélien Tchouaméni",
        "link": "https://www.transfermarkt.com/aurelien-tchouameni/profil/spieler/413112",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/413112-1668500754.jpg?lm=4711"
      },
      "position": "Defensive Midfield",
      "age": 22,
      "nationalities": [
        {
          "id": 50,
          "name": "France",
          "code": "FRA"
        },
        {
          "id": 31,
          "name": "Cameroon",
          "code": "CMR"
        }
      ],
      "season": {
        "id": 2022,
        "name": "22/23"
      },
      "from_club": {
        "id": 162,
        "name": "AS Monaco",
        "link": "https://www.transfermarkt.com/as-monaco/startseite/verein/162",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/162.png?lm=1789459175",
        "competition": {
          "id": "FR1",
          "name": "Ligue 1",
          "link": "https://www.transfermarkt.com/ligue-1/startseite/wettbewerb/FR1",
          "logo": null
        }
      },
      "fee": {
        "amount": 80000000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 7,
      "player": {
        "id": 3111,
        "name": "Zinédine Zidane",
        "link": "https://www.transfermarkt.com/zinedine-zidane/profil/spieler/3111",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/3111-1478769687.jpg?lm=4711"
      },
      "position": "Attacking Midfield",
      "age": 29,
      "nationalities": [
        {
          "id": 50,
          "name": "France",
          "code": "FRA"
        },
        {
          "id": 4,
          "name": "Algeria",
          "code": "ALG"
        }
      ],
      "season": {
        "id": 2001,
        "name": "01/02"
      },
      "from_club": {
        "id": 506,
        "name": "Juventus FC",
        "link": "https://www.transfermarkt.com/juventus-turin/startseite/verein/506",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/506_1402753089.png?lm=1789459197",
        "competition": {
          "id": "IT1",
          "name": "Serie A",
          "link": "https://www.transfermarkt.com/serie-a/startseite/wettbewerb/IT1",
          "logo": null
        }
      },
      "fee": {
        "amount": 77500000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 8,
      "player": {
        "id": 88103,
        "name": "James Rodríguez",
        "link": "https://www.transfermarkt.com/james-rodriguez/profil/spieler/88103",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/88103-1720681352.jpg?lm=4711"
      },
      "position": "Attacking Midfield",
      "age": 23,
      "nationalities": [
        {
          "id": 83,
          "name": "Colombia",
          "code": "COL"
        },
        {
          "id": 157,
          "name": "Spain",
          "code": "ESP"
        }
      ],
      "season": {
        "id": 2014,
        "name": "14/15"
      },
      "from_club": {
        "id": 162,
        "name": "AS Monaco",
        "link": "https://www.transfermarkt.com/as-monaco/startseite/verein/162",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/162_1726837602.png?lm=1789459175",
        "competition": {
          "id": "FR1",
          "name": "Ligue 1",
          "link": "https://www.transfermarkt.com/ligue-1/startseite/wettbewerb/FR1",
          "logo": null
        }
      },
      "fee": {
        "amount": 75000000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 9,
      "player": {
        "id": 3366,
        "name": "Kaká",
        "link": "https://www.transfermarkt.com/kaka/profil/spieler/3366",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/3366-1683638749.jpg?lm=4711"
      },
      "position": "Attacking Midfield",
      "age": 27,
      "nationalities": [
        {
          "id": 26,
          "name": "Brazil",
          "code": "BRA"
        },
        {
          "id": 75,
          "name": "Italy",
          "code": "ITA"
        }
      ],
      "season": {
        "id": 2009,
        "name": "09/10"
      },
      "from_club": {
        "id": 5,
        "name": "AC Milan",
        "link": "https://www.transfermarkt.com/ac-mailand/startseite/verein/5",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/5.png?lm=1789459167",
        "competition": {
          "id": "IT1",
          "name": "Serie A",
          "link": "https://www.transfermarkt.com/serie-a/startseite/wettbewerb/IT1",
          "logo": null
        }
      },
      "fee": {
        "amount": 67000000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 10,
      "player": {
        "id": 257462,
        "name": "Luka Jović",
        "link": "https://www.transfermarkt.com/luka-jovic/profil/spieler/257462",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/257462-1757717450.png?lm=4711"
      },
      "position": "Centre-Forward",
      "age": 21,
      "nationalities": [
        {
          "id": 215,
          "name": "Serbia",
          "code": "SRB"
        },
        {
          "id": 24,
          "name": "Bosnia-Herzegovina",
          "code": "BIH"
        }
      ],
      "season": {
        "id": 2019,
        "name": "19/20"
      },
      "from_club": {
        "id": 24,
        "name": "Eintracht Frankfurt",
        "link": "https://www.transfermarkt.com/eintracht-frankfurt/startseite/verein/24",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/24.png?lm=1789459167",
        "competition": {
          "id": "L1",
          "name": "Bundesliga",
          "link": "https://www.transfermarkt.com/bundesliga/startseite/wettbewerb/L1",
          "logo": null
        }
      },
      "fee": {
        "amount": 63000000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 11,
      "player": {
        "id": 890290,
        "name": "Dean Huijsen",
        "link": "https://www.transfermarkt.com/dean-huijsen/profil/spieler/890290",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/890290-1750251451.jpg?lm=4711"
      },
      "position": "Centre-Back",
      "age": 20,
      "nationalities": [
        {
          "id": 157,
          "name": "Spain",
          "code": "ESP"
        },
        {
          "id": 122,
          "name": "Netherlands",
          "code": "NED"
        }
      ],
      "season": {
        "id": 2025,
        "name": "25/26"
      },
      "from_club": {
        "id": 989,
        "name": "AFC Bournemouth",
        "link": "https://www.transfermarkt.com/afc-bournemouth/startseite/verein/989",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/989.png?lm=1789459227",
        "competition": {
          "id": "GB1",
          "name": "Premier League",
          "link": "https://www.transfermarkt.com/premier-league/startseite/wettbewerb/GB1",
          "logo": null
        }
      },
      "fee": {
        "amount": 62500000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 12,
      "player": {
        "id": 3446,
        "name": "Luís Figo",
        "link": "https://www.transfermarkt.com/luis-figo/profil/spieler/3446",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/3446-1570440028.jpg?lm=4711"
      },
      "position": "Right Winger",
      "age": 27,
      "nationalities": [
        {
          "id": 136,
          "name": "Portugal",
          "code": "POR"
        }
      ],
      "season": {
        "id": 2000,
        "name": "00/01"
      },
      "from_club": {
        "id": 131,
        "name": "FC Barcelona",
        "link": "https://www.transfermarkt.com/fc-barcelona/startseite/verein/131",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/131_1400792355.png?lm=1789459175",
        "competition": {
          "id": "ES1",
          "name": "LaLiga",
          "link": "https://www.transfermarkt.com/laliga/startseite/wettbewerb/ES1",
          "logo": null
        }
      },
      "fee": {
        "amount": 60000000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 13,
      "player": {
        "id": 284857,
        "name": "Marc Cucurella",
        "link": "https://www.transfermarkt.com/marc-cucurella/profil/spieler/284857",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/284857-1765185117.jpg?lm=4711"
      },
      "position": "Left-Back",
      "age": 27,
      "nationalities": [
        {
          "id": 157,
          "name": "Spain",
          "code": "ESP"
        }
      ],
      "season": {
        "id": 2026,
        "name": "26/27"
      },
      "from_club": {
        "id": 631,
        "name": "Chelsea FC",
        "link": "https://www.transfermarkt.com/fc-chelsea/startseite/verein/631",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/631.png?lm=1789459205",
        "competition": {
          "id": "GB1",
          "name": "Premier League",
          "link": "https://www.transfermarkt.com/premier-league/startseite/wettbewerb/GB1",
          "logo": null
        }
      },
      "fee": {
        "amount": 55000000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 14,
      "player": {
        "id": 401530,
        "name": "Éder Militão",
        "link": "https://www.transfermarkt.com/eder-militao/profil/spieler/401530",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/401530-1719653438.jpg?lm=4711"
      },
      "position": "Centre-Back",
      "age": 21,
      "nationalities": [
        {
          "id": 26,
          "name": "Brazil",
          "code": "BRA"
        },
        {
          "id": 157,
          "name": "Spain",
          "code": "ESP"
        }
      ],
      "season": {
        "id": 2019,
        "name": "19/20"
      },
      "from_club": {
        "id": 720,
        "name": "FC Porto",
        "link": "https://www.transfermarkt.com/fc-porto/startseite/verein/720",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/720.png?lm=1789459211",
        "competition": {
          "id": "PO1",
          "name": "Liga NOS",
          "link": "https://www.transfermarkt.com/liga-nos/startseite/wettbewerb/PO1",
          "logo": null
        }
      },
      "fee": {
        "amount": 50000000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 15,
      "player": {
        "id": 811778,
        "name": "Álvaro Carreras",
        "link": "https://www.transfermarkt.com/alvaro-carreras/profil/spieler/811778",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/811778-1737497415.jpg?lm=4711"
      },
      "position": "Left-Back",
      "age": 22,
      "nationalities": [
        {
          "id": 157,
          "name": "Spain",
          "code": "ESP"
        }
      ],
      "season": {
        "id": 2025,
        "name": "25/26"
      },
      "from_club": {
        "id": 294,
        "name": "SL Benfica",
        "link": "https://www.transfermarkt.com/benfica-lissabon/startseite/verein/294",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/294.png?lm=1789459183",
        "competition": {
          "id": "PO1",
          "name": "Liga Portugal",
          "link": "https://www.transfermarkt.com/liga-nos/startseite/wettbewerb/PO1",
          "logo": null
        }
      },
      "fee": {
        "amount": 50000000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 16,
      "player": {
        "id": 291417,
        "name": "Ferland Mendy",
        "link": "https://www.transfermarkt.com/ferland-mendy/profil/spieler/291417",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/291417-1701294025.jpg?lm=4711"
      },
      "position": "Left-Back",
      "age": 24,
      "nationalities": [
        {
          "id": 50,
          "name": "France",
          "code": "FRA"
        },
        {
          "id": 149,
          "name": "Senegal",
          "code": "SEN"
        }
      ],
      "season": {
        "id": 2019,
        "name": "19/20"
      },
      "from_club": {
        "id": 1041,
        "name": "Olympique Lyon",
        "link": "https://www.transfermarkt.com/olympique-lyon/startseite/verein/1041",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/1041_1656668888.png?lm=1789459228",
        "competition": {
          "id": "FR1",
          "name": "Ligue 1",
          "link": "https://www.transfermarkt.com/ligue-1/startseite/wettbewerb/FR1",
          "logo": null
        }
      },
      "fee": {
        "amount": 48000000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 17,
      "player": {
        "id": 971570,
        "name": "Endrick",
        "link": "https://www.transfermarkt.com/endrick/profil/spieler/971570",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/971570-1782847902.jpg?lm=4711"
      },
      "position": "Centre-Forward",
      "age": 18,
      "nationalities": [
        {
          "id": 26,
          "name": "Brazil",
          "code": "BRA"
        }
      ],
      "season": {
        "id": 2024,
        "name": "24/25"
      },
      "from_club": {
        "id": 1023,
        "name": "Sociedade Esportiva Palmeiras",
        "link": "https://www.transfermarkt.com/se-palmeiras-sao-paulo/startseite/verein/1023",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/1023.png?lm=1789459228",
        "competition": {
          "id": "BRA1",
          "name": "Série A",
          "link": "https://www.transfermarkt.com/campeonato-brasileiro-serie-a/startseite/wettbewerb/BRA1",
          "logo": null
        }
      },
      "fee": {
        "amount": 47500000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 18,
      "player": {
        "id": 412363,
        "name": "Rodrygo",
        "link": "https://www.transfermarkt.com/rodrygo/profil/spieler/412363",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/412363-1763041611.jpg?lm=4711"
      },
      "position": "Right Winger",
      "age": 18,
      "nationalities": [
        {
          "id": 26,
          "name": "Brazil",
          "code": "BRA"
        },
        {
          "id": 157,
          "name": "Spain",
          "code": "ESP"
        }
      ],
      "season": {
        "id": 2019,
        "name": "19/20"
      },
      "from_club": {
        "id": 221,
        "name": "Santos FC",
        "link": "https://www.transfermarkt.com/fc-santos/startseite/verein/221",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/221.png?lm=1789459177",
        "competition": {
          "id": "BRA1",
          "name": "Série A",
          "link": "https://www.transfermarkt.com/campeonato-brasileiro-serie-a/startseite/wettbewerb/BRA1",
          "logo": null
        }
      },
      "fee": {
        "amount": 45000000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 19,
      "player": {
        "id": 371998,
        "name": "Vinicius Junior",
        "link": "https://www.transfermarkt.com/vinicius-junior/profil/spieler/371998",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/371998-1761575144.jpg?lm=4711"
      },
      "position": "Left Winger",
      "age": 18,
      "nationalities": [
        {
          "id": 26,
          "name": "Brazil",
          "code": "BRA"
        },
        {
          "id": 157,
          "name": "Spain",
          "code": "ESP"
        }
      ],
      "season": {
        "id": 2018,
        "name": "18/19"
      },
      "from_club": {
        "id": 614,
        "name": "CR Flamengo",
        "link": "https://www.transfermarkt.com/flamengo-rio-de-janeiro/startseite/verein/614",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/614.png?lm=1789459204",
        "competition": {
          "id": "BRA1",
          "name": "Série A",
          "link": "https://www.transfermarkt.com/campeonato-brasileiro-serie-a/startseite/wettbewerb/BRA1",
          "logo": null
        }
      },
      "fee": {
        "amount": 45000000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 20,
      "player": {
        "id": 1057316,
        "name": "Franco Mastantuono",
        "link": "https://www.transfermarkt.com/franco-mastantuono/profil/spieler/1057316",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/1057316-1755702696.jpg?lm=4711"
      },
      "position": "Right Winger",
      "age": 18,
      "nationalities": [
        {
          "id": 9,
          "name": "Argentina",
          "code": "ARG"
        },
        {
          "id": 75,
          "name": "Italy",
          "code": "ITA"
        }
      ],
      "season": {
        "id": 2025,
        "name": "25/26"
      },
      "from_club": {
        "id": 209,
        "name": "CA River Plate",
        "link": "https://www.transfermarkt.com/club-atletico-river-plate/startseite/verein/209",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/209.png?lm=1789459176",
        "competition": {
          "id": "ARGC",
          "name": "Torneo Clausura",
          "link": "https://www.transfermarkt.com/torneo-final/startseite/wettbewerb/ARGC",
          "logo": null
        }
      },
      "fee": {
        "amount": 45000000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 21,
      "player": {
        "id": 3140,
        "name": "Ronaldo",
        "link": "https://www.transfermarkt.com/ronaldo/profil/spieler/3140",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/3140-1489417571.jpg?lm=4711"
      },
      "position": "Centre-Forward",
      "age": 25,
      "nationalities": [
        {
          "id": 26,
          "name": "Brazil",
          "code": "BRA"
        },
        {
          "id": 157,
          "name": "Spain",
          "code": "ESP"
        }
      ],
      "season": {
        "id": 2002,
        "name": "02/03"
      },
      "from_club": {
        "id": 46,
        "name": "Inter Milan",
        "link": "https://www.transfermarkt.com/inter-mailand/startseite/verein/46",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/46_1401907763.png?lm=1789459168",
        "competition": {
          "id": "IT1",
          "name": "Serie A",
          "link": "https://www.transfermarkt.com/serie-a/startseite/wettbewerb/IT1",
          "logo": null
        }
      },
      "fee": {
        "amount": 45000000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 22,
      "player": {
        "id": 51471,
        "name": "Mateo Kovacic",
        "link": "https://www.transfermarkt.com/mateo-kovacic/profil/spieler/51471",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/51471-1682668192.jpg?lm=4711"
      },
      "position": "Central Midfield",
      "age": 21,
      "nationalities": [
        {
          "id": 37,
          "name": "Croatia",
          "code": "CRO"
        }
      ],
      "season": {
        "id": 2015,
        "name": "15/16"
      },
      "from_club": {
        "id": 46,
        "name": "Inter Milan",
        "link": "https://www.transfermarkt.com/inter-mailand/startseite/verein/46",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/46_1617091918.png?lm=1789459168",
        "competition": {
          "id": "IT1",
          "name": "Serie A",
          "link": "https://www.transfermarkt.com/serie-a/startseite/wettbewerb/IT1",
          "logo": null
        }
      },
      "fee": {
        "amount": 38000000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 23,
      "player": {
        "id": 3139,
        "name": "David Beckham",
        "link": "https://www.transfermarkt.com/david-beckham/profil/spieler/3139",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/3139-1746174990.jpg?lm=4711"
      },
      "position": "Right Midfield",
      "age": 28,
      "nationalities": [
        {
          "id": 189,
          "name": "England",
          "code": "ENG"
        }
      ],
      "season": {
        "id": 2003,
        "name": "03/04"
      },
      "from_club": {
        "id": 985,
        "name": "Manchester United",
        "link": "https://www.transfermarkt.com/manchester-united/startseite/verein/985",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/985.png?lm=1789459227",
        "competition": {
          "id": "GB1",
          "name": "Premier League",
          "link": "https://www.transfermarkt.com/premier-league/startseite/wettbewerb/GB1",
          "logo": null
        }
      },
      "fee": {
        "amount": 37500000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 24,
      "player": {
        "id": 108390,
        "name": "Thibaut Courtois",
        "link": "https://www.transfermarkt.com/thibaut-courtois/profil/spieler/108390",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/108390-1717280733.jpg?lm=4711"
      },
      "position": "Goalkeeper",
      "age": 26,
      "nationalities": [
        {
          "id": 19,
          "name": "Belgium",
          "code": "BEL"
        }
      ],
      "season": {
        "id": 2018,
        "name": "18/19"
      },
      "from_club": {
        "id": 631,
        "name": "Chelsea FC",
        "link": "https://www.transfermarkt.com/fc-chelsea/startseite/verein/631",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/631_1782931436.png?lm=1789459205",
        "competition": {
          "id": "GB1",
          "name": "Premier League",
          "link": "https://www.transfermarkt.com/premier-league/startseite/wettbewerb/GB1",
          "logo": null
        }
      },
      "fee": {
        "amount": 35000000,
        "currency": "EUR",
        "type": "transfer"
      }
    },
    {
      "rank": 25,
      "player": {
        "id": 27992,
        "name": "Luka Modrić",
        "link": "https://www.transfermarkt.com/luka-modric/profil/spieler/27992",
        "image": "https://img.a.transfermarkt.technology/portrait/medium/27992-1687776160.jpg?lm=4711"
      },
      "position": "Central Midfield",
      "age": 26,
      "nationalities": [
        {
          "id": 37,
          "name": "Croatia",
          "code": "CRO"
        }
      ],
      "season": {
        "id": 2012,
        "name": "12/13"
      },
      "from_club": {
        "id": 148,
        "name": "Tottenham Hotspur",
        "link": "https://www.transfermarkt.com/tottenham-hotspur/startseite/verein/148",
        "crest": "https://img.a.transfermarkt.technology/wappen/head/148_1732012045.png?lm=1789459175",
        "competition": {
          "id": "GB1",
          "name": "Premier League",
          "link": "https://www.transfermarkt.com/premier-league/startseite/wettbewerb/GB1",
          "logo": null
        }
      },
      "fee": {
        "amount": 35000000,
        "currency": "EUR",
        "type": "transfer"
      }
    }
  ]
}