Sofascore Scraper

ENDPOINTS
GET/matches/managers

Match Managers

Both managers with id, name, link, image and country.

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_manager": {
    "id": 53463,
    "name": "Pep Guardiola",
    "short_name": "P. Guardiola",
    "slug": "pep-guardiola",
    "link": "https://www.sofascore.com/manager/pep-guardiola/53463",
    "image_link": "https://img.sofascore.com/api/v1/manager/53463/image",
    "country": null
  },
  "away_manager": {
    "id": 53062,
    "name": "Unai Emery",
    "short_name": "U. Emery",
    "slug": "unai-emery",
    "link": "https://www.sofascore.com/manager/unai-emery/53062",
    "image_link": "https://img.sofascore.com/api/v1/manager/53062/image",
    "country": null
  }
}