Flashscore Scraper

ENDPOINTS
GET/players/injuries

Player Injuries

Injury history with the dates out and what the injury was.

QUERY PARAMS

flashscore.com player URL. Flashscore serves a player page only at its exact /player/<slug>/<id>/ address, so pass the full link (a bare ID works on /players/news only).

Example: https://www.flashscore.com/player/mbappe-kylian/Wn6E2SED/

{
  "id": "Wn6E2SED",
  "name": "Kylian Mbappe",
  "link": "https://www.flashscore.com/player/mbappe-kylian/Wn6E2SED/",
  "position": "Forward",
  "country": "France",
  "team": {
    "id": "W8mj7MDD",
    "name": "Real Madrid",
    "short_name": null,
    "link": "https://www.flashscore.com/team/real-madrid/W8mj7MDD/",
    "logo": null
  },
  "age": 27,
  "date_of_birth": "1998-12-20",
  "market_value": {
    "amount": 218400000,
    "currency": "EUR"
  },
  "contract_expires": "2029-06-30",
  "count": 3,
  "injury_history": [
    {
      "from_date": "2026-04-25",
      "until_date": "2026-05-12",
      "type": "Muscle Injury"
    },
    {
      "from_date": "2026-02-24",
      "until_date": "2026-03-15",
      "type": "Knee Injury"
    },
    {
      "from_date": "2026-02-12",
      "until_date": "2026-02-13",
      "type": "Knee Injury"
    }
  ]
}