Sofascore Scraper

ENDPOINTS
GET/matches/featured-players

Featured Players

Sofascore's featured player of each team with their season statistics.

QUERY PARAMS

Sofascore match id or any sofascore.com match URL (the #id: fragment is the id).

Examples:

  • ID: 14023961
  • URL: https://www.sofascore.com/football/match/…#id:14023961
{
  "match_id": 14023961,
  "home": {
    "player": {
      "id": 827606,
      "name": "Rodri",
      "short_name": "Rodri",
      "slug": "rodri",
      "first_name": "Rodrigo",
      "last_name": "Rodri",
      "link": "https://www.sofascore.com/player/rodri/827606",
      "image_link": "https://img.sofascore.com/api/v1/player/827606/image",
      "position": "M",
      "jersey_number": 16,
      "gender": "M",
      "country": null,
      "followers_count": 207319
    },
    "statistics": {
      "rating": "7.6"
    },
    "match_id": 14023936
  },
  "away": {
    "player": {
      "id": 331737,
      "name": "Youri Tielemans",
      "short_name": "Y. Tielemans",
      "slug": "youri-tielemans",
      "first_name": "Youri",
      "last_name": "Tielemans",
      "link": "https://www.sofascore.com/player/youri-tielemans/331737",
      "image_link": "https://img.sofascore.com/api/v1/player/331737/image",
      "position": "M",
      "jersey_number": 18,
      "gender": "M",
      "country": null,
      "followers_count": 26570
    },
    "statistics": {
      "rating": "8.4"
    },
    "match_id": 15632626
  }
}