Sofascore Scraper

ENDPOINTS
GET/players/transfer-history

Player Transfer History

Career transfers: from/to team, date, fee and type.

QUERY PARAMS

Sofascore player id or any sofascore.com player URL.

Examples:

  • ID: 934235 (Bukayo Saka)
  • URL: https://www.sofascore.com/football/player/bukayo-saka/934235
{
  "player_id": 934235,
  "count": 1,
  "transfers": [
    {
      "player": {
        "id": 934235,
        "name": "Bukayo Saka",
        "short_name": "B. Saka",
        "slug": "bukayo-saka",
        "first_name": "Bukayo",
        "last_name": "Saka",
        "link": "https://www.sofascore.com/player/bukayo-saka/934235",
        "image_link": "https://img.sofascore.com/api/v1/player/934235/image",
        "position": "F",
        "jersey_number": 7,
        "gender": "M",
        "country": null,
        "followers_count": 220006
      },
      "transfer_from": {
        "id": 36554,
        "name": "Arsenal U21",
        "short_name": "Arsenal U21",
        "code": "ARS",
        "slug": "arsenal-u21",
        "link": "https://www.sofascore.com/team/football/arsenal-u21/36554",
        "image_link": "https://img.sofascore.com/api/v1/team/36554/image",
        "sport": {
          "id": 1,
          "name": "Football",
          "slug": "football"
        },
        "country": null,
        "gender": "M",
        "is_national": false,
        "colors": {
          "primary": "#ff0000",
          "secondary": "#ffffff",
          "text": "#ffffff"
        },
        "followers_count": 14236,
        "parent_team": {
          "name": "Arsenal",
          "slug": "arsenal",
          "short_name": "Arsenal",
          "gender": "M",
          "sport": {
            "id": 1,
            "name": "Football",
            "slug": "football"
          },
          "followers_count": 4194250,
          "code": "ARS",
          "is_national": false,
          "type": 0,
          "id": 42,
          "colors": {
            "primary": "#cc0000",
            "secondary": "#ffffff",
            "text": "#ffffff"
          }
        }
      },
      "transfer_to": {
        "id": 42,
        "name": "Arsenal",
        "short_name": "Arsenal",
        "code": "ARS",
        "slug": "arsenal",
        "link": "https://www.sofascore.com/team/football/arsenal/42",
        "image_link": "https://img.sofascore.com/api/v1/team/42/image",
        "sport": {
          "id": 1,
          "name": "Football",
          "slug": "football"
        },
        "country": null,
        "gender": "M",
        "is_national": false,
        "colors": {
          "primary": "#cc0000",
          "secondary": "#ffffff",
          "text": "#ffffff"
        },
        "followers_count": 4194250
      },
      "from_team_name": "Arsenal U21",
      "to_team_name": "Arsenal",
      "type": 3,
      "transfer_fee": 0,
      "transfer_fee_description": "-",
      "id": 923356,
      "transfer_date": "2019-07-01",
      "transfer_fee_raw": {
        "value": 0,
        "currency": "EUR"
      }
    }
  ]
}