Sofascore Scraper

ENDPOINTS
GET/matches/statistics

Match Statistics

Team statistics per period: possession, xG, shots, passes, duels, tackles, goalkeeping, with home/away values.

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,
  "periods": [
    {
      "period": "ALL",
      "groups": [
        {
          "name": "Match overview",
          "items": [
            {
              "key": "ballPossession",
              "name": "Ball possession",
              "home": "53%",
              "away": "47%",
              "home_value": 53,
              "away_value": 47,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "kilometersCovered",
              "name": "Distance covered",
              "home": "102.6 km",
              "away": "100.4 km",
              "home_value": 102.6,
              "away_value": 100.4,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "expectedGoals",
              "name": "Expected goals",
              "home": "1.34",
              "away": "1.77",
              "home_value": 1.34,
              "away_value": 1.77,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "bigChanceCreated",
              "name": "Big chances",
              "home": "2",
              "away": "4",
              "home_value": 2,
              "away_value": 4,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "totalShotsOnGoal",
              "name": "Total shots",
              "home": "16",
              "away": "12",
              "home_value": 16,
              "away_value": 12,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "goalkeeperSaves",
              "name": "Goalkeeper saves",
              "home": "3",
              "away": "2",
              "home_value": 3,
              "away_value": 2,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "numberOfSprints",
              "name": "Number of sprints",
              "home": "107",
              "away": "96",
              "home_value": 107,
              "away_value": 96,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "cornerKicks",
              "name": "Corner kicks",
              "home": "9",
              "away": "4",
              "home_value": 9,
              "away_value": 4,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "fouls",
              "name": "Fouls",
              "home": "8",
              "away": "4",
              "home_value": 8,
              "away_value": 4,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "negative",
              "value_type": "event"
            },
            {
              "key": "passes",
              "name": "Passes",
              "home": "481",
              "away": "440",
              "home_value": 481,
              "away_value": 440,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "totalTackle",
              "name": "Tackles",
              "home": "10",
              "away": "28",
              "home_value": 10,
              "away_value": 28,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "freeKicks",
              "name": "Free kicks",
              "home": "4",
              "away": "8",
              "home_value": 4,
              "away_value": 8,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "yellowCards",
              "name": "Yellow cards",
              "home": "1",
              "away": "0",
              "home_value": 1,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "negative",
              "value_type": "event"
            }
          ]
        },
        {
          "name": "Shots",
          "items": [
            {
              "key": "totalShotsOnGoal",
              "name": "Total shots",
              "home": "16",
              "away": "12",
              "home_value": 16,
              "away_value": 12,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "shotsOnGoal",
              "name": "Shots on target",
              "home": "3",
              "away": "5",
              "home_value": 3,
              "away_value": 5,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "expectedGoals",
              "name": "Expected goals",
              "home": "1.34",
              "away": "1.77",
              "home_value": 1.34,
              "away_value": 1.77,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "expectedGoalsOnTarget",
              "name": "Expected goals on target",
              "home": "1.51",
              "away": "2.65",
              "home_value": 1.51,
              "away_value": 2.65,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "hitWoodwork",
              "name": "Hit woodwork",
              "home": "0",
              "away": "1",
              "home_value": 0,
              "away_value": 1,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "negative",
              "value_type": "event"
            },
            {
              "key": "shotsOffGoal",
              "name": "Shots off target",
              "home": "7",
              "away": "5",
              "home_value": 7,
              "away_value": 5,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "negative",
              "value_type": "event"
            },
            {
              "key": "blockedScoringAttempt",
              "name": "Blocked shots",
              "home": "6",
              "away": "2",
              "home_value": 6,
              "away_value": 2,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "negative",
              "value_type": "event"
            },
            {
              "key": "totalShotsInsideBox",
              "name": "Shots inside box",
              "home": "10",
              "away": "9",
              "home_value": 10,
              "away_value": 9,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "totalShotsOutsideBox",
              "name": "Shots outside box",
              "home": "6",
              "away": "3",
              "home_value": 6,
              "away_value": 3,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            }
          ]
        },
        {
          "name": "Attack",
          "items": [
            {
              "key": "bigChanceScored",
              "name": "Big chances scored",
              "home": "1",
              "away": "2",
              "home_value": 1,
              "away_value": 2,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "bigChanceMissed",
              "name": "Big chances missed",
              "home": "1",
              "away": "2",
              "home_value": 1,
              "away_value": 2,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "negative",
              "value_type": "event"
            },
            {
              "key": "accurateThroughBall",
              "name": "Through balls",
              "home": "2",
              "away": "1",
              "home_value": 2,
              "away_value": 1,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "touchesInOppBox",
              "name": "Touches in penalty area",
              "home": "46",
              "away": "20",
              "home_value": 46,
              "away_value": 20,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "fouledFinalThird",
              "name": "Fouled in final third",
              "home": "2",
              "away": "2",
              "home_value": 2,
              "away_value": 2,
              "home_total": null,
              "away_total": null,
              "compare_code": 3,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "offsides",
              "name": "Offsides",
              "home": "1",
              "away": "1",
              "home_value": 1,
              "away_value": 1,
              "home_total": null,
              "away_total": null,
              "compare_code": 3,
              "statistics_type": "negative",
              "value_type": "event"
            }
          ]
        },
        {
          "name": "Passes",
          "items": [
            {
              "key": "accuratePasses",
              "name": "Accurate passes",
              "home": "426",
              "away": "397",
              "home_value": 426,
              "away_value": 397,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "throwIns",
              "name": "Throw-ins",
              "home": "20",
              "away": "10",
              "home_value": 20,
              "away_value": 10,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "finalThirdEntries",
              "name": "Final third entries",
              "home": "55",
              "away": "25",
              "home_value": 55,
              "away_value": 25,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "finalThirdPhaseStatistic",
              "name": "Final third phase",
              "home": "163/201 (81%)",
              "away": "40/57 (70%)",
              "home_value": 163,
              "away_value": 40,
              "home_total": 201,
              "away_total": 57,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "team"
            },
            {
              "key": "accurateLongBalls",
              "name": "Long balls",
              "home": "19/30 (63%)",
              "away": "20/40 (50%)",
              "home_value": 19,
              "away_value": 20,
              "home_total": 30,
              "away_total": 40,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "team"
            },
            {
              "key": "accurateCross",
              "name": "Crosses",
              "home": "1/14 (7%)",
              "away": "3/8 (38%)",
              "home_value": 1,
              "away_value": 3,
              "home_total": 14,
              "away_total": 8,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "team"
            }
          ]
        },
        {
          "name": "Duels",
          "items": [
            {
              "key": "duelWonPercent",
              "name": "Duels",
              "home": "38%",
              "away": "62%",
              "home_value": 38,
              "away_value": 62,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "dispossessed",
              "name": "Dispossessed",
              "home": "12",
              "away": "4",
              "home_value": 12,
              "away_value": 4,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "negative",
              "value_type": "event"
            },
            {
              "key": "groundDuelsPercentage",
              "name": "Ground duels",
              "home": "19/58 (33%)",
              "away": "39/58 (67%)",
              "home_value": 19,
              "away_value": 39,
              "home_total": 58,
              "away_total": 58,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "team"
            },
            {
              "key": "aerialDuelsPercentage",
              "name": "Aerial duels",
              "home": "7/10 (70%)",
              "away": "3/10 (30%)",
              "home_value": 7,
              "away_value": 3,
              "home_total": 10,
              "away_total": 10,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "team"
            },
            {
              "key": "dribblesPercentage",
              "name": "Dribbles",
              "home": "5/21 (24%)",
              "away": "3/9 (33%)",
              "home_value": 5,
              "away_value": 3,
              "home_total": 21,
              "away_total": 9,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "team"
            }
          ]
        },
        {
          "name": "Defending",
          "items": [
            {
              "key": "wonTacklePercent",
              "name": "Tackles won",
              "home": "60%",
              "away": "68%",
              "home_value": 6,
              "away_value": 19,
              "home_total": 10,
              "away_total": 28,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "team"
            },
            {
              "key": "totalTackle",
              "name": "Total tackles",
              "home": "10",
              "away": "28",
              "home_value": 10,
              "away_value": 28,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "interceptionWon",
              "name": "Interceptions",
              "home": "7",
              "away": "11",
              "home_value": 7,
              "away_value": 11,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "ballRecovery",
              "name": "Recoveries",
              "home": "33",
              "away": "32",
              "home_value": 33,
              "away_value": 32,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "totalClearance",
              "name": "Clearances",
              "home": "15",
              "away": "37",
              "home_value": 15,
              "away_value": 37,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "errorsLeadToShot",
              "name": "Errors lead to a shot",
              "home": "0",
              "away": "1",
              "home_value": 0,
              "away_value": 1,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "negative",
              "value_type": "event"
            },
            {
              "key": "errorsLeadToGoal",
              "name": "Errors lead to a goal",
              "home": "1",
              "away": "0",
              "home_value": 1,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "negative",
              "value_type": "event"
            }
          ]
        },
        {
          "name": "Goalkeeping",
          "items": [
            {
              "key": "goalkeeperSaves",
              "name": "Total saves",
              "home": "3",
              "away": "2",
              "home_value": 3,
              "away_value": 2,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "goalsPrevented",
              "name": "Goals prevented",
              "home": "0.65",
              "away": "0.51",
              "home_value": 0.6451,
              "away_value": 0.513,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "diveSaves",
              "name": "Big saves",
              "home": "1",
              "away": "0",
              "home_value": 1,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "punches",
              "name": "Punches",
              "home": "0",
              "away": "1",
              "home_value": 0,
              "away_value": 1,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "goalKicks",
              "name": "Goal kicks",
              "home": "6",
              "away": "12",
              "home_value": 6,
              "away_value": 12,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            }
          ]
        }
      ]
    },
    {
      "period": "1ST",
      "groups": [
        {
          "name": "Match overview",
          "items": [
            {
              "key": "ballPossession",
              "name": "Ball possession",
              "home": "57%",
              "away": "43%",
              "home_value": 57,
              "away_value": 43,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "expectedGoals",
              "name": "Expected goals",
              "home": "1.19",
              "away": "0.00",
              "home_value": 1.19,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "bigChanceCreated",
              "name": "Big chances",
              "home": "2",
              "away": "0",
              "home_value": 2,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "totalShotsOnGoal",
              "name": "Total shots",
              "home": "12",
              "away": "0",
              "home_value": 12,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "goalkeeperSaves",
              "name": "Goalkeeper saves",
              "home": "0",
              "away": "2",
              "home_value": 0,
              "away_value": 2,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "cornerKicks",
              "name": "Corner kicks",
              "home": "7",
              "away": "0",
              "home_value": 7,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "fouls",
              "name": "Fouls",
              "home": "1",
              "away": "4",
              "home_value": 1,
              "away_value": 4,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "negative",
              "value_type": "event"
            },
            {
              "key": "passes",
              "name": "Passes",
              "home": "276",
              "away": "215",
              "home_value": 276,
              "away_value": 215,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "totalTackle",
              "name": "Tackles",
              "home": "6",
              "away": "11",
              "home_value": 6,
              "away_value": 11,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "freeKicks",
              "name": "Free kicks",
              "home": "4",
              "away": "1",
              "home_value": 4,
              "away_value": 1,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "yellowCards",
              "name": "Yellow cards",
              "home": "0",
              "away": "0",
              "home_value": 0,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 3,
              "statistics_type": "negative",
              "value_type": "event"
            }
          ]
        },
        {
          "name": "Shots",
          "items": [
            {
              "key": "totalShotsOnGoal",
              "name": "Total shots",
              "home": "12",
              "away": "0",
              "home_value": 12,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "shotsOnGoal",
              "name": "Shots on target",
              "home": "3",
              "away": "0",
              "home_value": 3,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "expectedGoals",
              "name": "Expected goals",
              "home": "1.19",
              "away": "0.00",
              "home_value": 1.19,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "expectedGoalsOnTarget",
              "name": "Expected goals on target",
              "home": "1.51",
              "away": "0.00",
              "home_value": 1.51,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "hitWoodwork",
              "name": "Hit woodwork",
              "home": "0",
              "away": "0",
              "home_value": 0,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 3,
              "statistics_type": "negative",
              "value_type": "event"
            },
            {
              "key": "shotsOffGoal",
              "name": "Shots off target",
              "home": "5",
              "away": "0",
              "home_value": 5,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "negative",
              "value_type": "event"
            },
            {
              "key": "blockedScoringAttempt",
              "name": "Blocked shots",
              "home": "4",
              "away": "0",
              "home_value": 4,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "negative",
              "value_type": "event"
            },
            {
              "key": "totalShotsInsideBox",
              "name": "Shots inside box",
              "home": "9",
              "away": "0",
              "home_value": 9,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "totalShotsOutsideBox",
              "name": "Shots outside box",
              "home": "3",
              "away": "0",
              "home_value": 3,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            }
          ]
        },
        {
          "name": "Attack",
          "items": [
            {
              "key": "bigChanceScored",
              "name": "Big chances scored",
              "home": "1",
              "away": "0",
              "home_value": 1,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "bigChanceMissed",
              "name": "Big chances missed",
              "home": "1",
              "away": "0",
              "home_value": 1,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "negative",
              "value_type": "event"
            },
            {
              "key": "accurateThroughBall",
              "name": "Through balls",
              "home": "1",
              "away": "0",
              "home_value": 1,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "fouledFinalThird",
              "name": "Fouled in final third",
              "home": "2",
              "away": "0",
              "home_value": 2,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "offsides",
              "name": "Offsides",
              "home": "0",
              "away": "0",
              "home_value": 0,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 3,
              "statistics_type": "negative",
              "value_type": "event"
            }
          ]
        },
        {
          "name": "Passes",
          "items": [
            {
              "key": "accuratePasses",
              "name": "Accurate passes",
              "home": "246",
              "away": "193",
              "home_value": 246,
              "away_value": 193,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "throwIns",
              "name": "Throw-ins",
              "home": "12",
              "away": "6",
              "home_value": 12,
              "away_value": 6,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "finalThirdEntries",
              "name": "Final third entries",
              "home": "35",
              "away": "5",
              "home_value": 35,
              "away_value": 5,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "accurateLongBalls",
              "name": "Long balls",
              "home": "15/20 (75%)",
              "away": "7/16 (44%)",
              "home_value": 15,
              "away_value": 7,
              "home_total": 20,
              "away_total": 16,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "team"
            },
            {
              "key": "accurateCross",
              "name": "Crosses",
              "home": "1/10 (10%)",
              "away": "0/0 (0%)",
              "home_value": 1,
              "away_value": 0,
              "home_total": 10,
              "away_total": 0,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "team"
            }
          ]
        },
        {
          "name": "Duels",
          "items": [
            {
              "key": "duelWonPercent",
              "name": "Duels",
              "home": "57%",
              "away": "43%",
              "home_value": 57,
              "away_value": 43,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "dispossessed",
              "name": "Dispossessed",
              "home": "4",
              "away": "1",
              "home_value": 4,
              "away_value": 1,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "negative",
              "value_type": "event"
            },
            {
              "key": "groundDuelsPercentage",
              "name": "Ground duels",
              "home": "11/24 (46%)",
              "away": "13/24 (54%)",
              "home_value": 11,
              "away_value": 13,
              "home_total": 24,
              "away_total": 24,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "team"
            },
            {
              "key": "aerialDuelsPercentage",
              "name": "Aerial duels",
              "home": "6/6 (100%)",
              "away": "0/6 (0%)",
              "home_value": 6,
              "away_value": 0,
              "home_total": 6,
              "away_total": 6,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "team"
            },
            {
              "key": "dribblesPercentage",
              "name": "Dribbles",
              "home": "1/8 (13%)",
              "away": "1/6 (17%)",
              "home_value": 1,
              "away_value": 1,
              "home_total": 8,
              "away_total": 6,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "team"
            }
          ]
        },
        {
          "name": "Defending",
          "items": [
            {
              "key": "wonTacklePercent",
              "name": "Tackles won",
              "home": "83%",
              "away": "64%",
              "home_value": 5,
              "away_value": 7,
              "home_total": 6,
              "away_total": 11,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "team"
            },
            {
              "key": "totalTackle",
              "name": "Total tackles",
              "home": "6",
              "away": "11",
              "home_value": 6,
              "away_value": 11,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "interceptionWon",
              "name": "Interceptions",
              "home": "4",
              "away": "5",
              "home_value": 4,
              "away_value": 5,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "ballRecovery",
              "name": "Recoveries",
              "home": "18",
              "away": "13",
              "home_value": 18,
              "away_value": 13,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "totalClearance",
              "name": "Clearances",
              "home": "6",
              "away": "24",
              "home_value": 6,
              "away_value": 24,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            }
          ]
        },
        {
          "name": "Goalkeeping",
          "items": [
            {
              "key": "goalkeeperSaves",
              "name": "Total saves",
              "home": "0",
              "away": "2",
              "home_value": 0,
              "away_value": 2,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "goalKicks",
              "name": "Goal kicks",
              "home": "2",
              "away": "9",
              "home_value": 2,
              "away_value": 9,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            }
          ]
        }
      ]
    },
    {
      "period": "2ND",
      "groups": [
        {
          "name": "Match overview",
          "items": [
            {
              "key": "ballPossession",
              "name": "Ball possession",
              "home": "47%",
              "away": "53%",
              "home_value": 47,
              "away_value": 53,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "expectedGoals",
              "name": "Expected goals",
              "home": "0.15",
              "away": "1.77",
              "home_value": 0.15,
              "away_value": 1.77,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "bigChanceCreated",
              "name": "Big chances",
              "home": "1",
              "away": "4",
              "home_value": 1,
              "away_value": 4,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "totalShotsOnGoal",
              "name": "Total shots",
              "home": "4",
              "away": "12",
              "home_value": 4,
              "away_value": 12,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "goalkeeperSaves",
              "name": "Goalkeeper saves",
              "home": "3",
              "away": "0",
              "home_value": 3,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "cornerKicks",
              "name": "Corner kicks",
              "home": "2",
              "away": "4",
              "home_value": 2,
              "away_value": 4,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "fouls",
              "name": "Fouls",
              "home": "7",
              "away": "0",
              "home_value": 7,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "negative",
              "value_type": "event"
            },
            {
              "key": "passes",
              "name": "Passes",
              "home": "205",
              "away": "225",
              "home_value": 205,
              "away_value": 225,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "totalTackle",
              "name": "Tackles",
              "home": "4",
              "away": "17",
              "home_value": 4,
              "away_value": 17,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "freeKicks",
              "name": "Free kicks",
              "home": "0",
              "away": "7",
              "home_value": 0,
              "away_value": 7,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "yellowCards",
              "name": "Yellow cards",
              "home": "1",
              "away": "0",
              "home_value": 1,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "negative",
              "value_type": "event"
            }
          ]
        },
        {
          "name": "Shots",
          "items": [
            {
              "key": "totalShotsOnGoal",
              "name": "Total shots",
              "home": "4",
              "away": "12",
              "home_value": 4,
              "away_value": 12,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "shotsOnGoal",
              "name": "Shots on target",
              "home": "1",
              "away": "5",
              "home_value": 1,
              "away_value": 5,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "expectedGoals",
              "name": "Expected goals",
              "home": "0.15",
              "away": "1.77",
              "home_value": 0.15,
              "away_value": 1.77,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "expectedGoalsOnTarget",
              "name": "Expected goals on target",
              "home": "0.00",
              "away": "2.65",
              "home_value": 0,
              "away_value": 2.65,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "hitWoodwork",
              "name": "Hit woodwork",
              "home": "0",
              "away": "1",
              "home_value": 0,
              "away_value": 1,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "negative",
              "value_type": "event"
            },
            {
              "key": "shotsOffGoal",
              "name": "Shots off target",
              "home": "2",
              "away": "5",
              "home_value": 2,
              "away_value": 5,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "negative",
              "value_type": "event"
            },
            {
              "key": "blockedScoringAttempt",
              "name": "Blocked shots",
              "home": "2",
              "away": "2",
              "home_value": 2,
              "away_value": 2,
              "home_total": null,
              "away_total": null,
              "compare_code": 3,
              "statistics_type": "negative",
              "value_type": "event"
            },
            {
              "key": "totalShotsInsideBox",
              "name": "Shots inside box",
              "home": "1",
              "away": "9",
              "home_value": 1,
              "away_value": 9,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "totalShotsOutsideBox",
              "name": "Shots outside box",
              "home": "3",
              "away": "3",
              "home_value": 3,
              "away_value": 3,
              "home_total": null,
              "away_total": null,
              "compare_code": 3,
              "statistics_type": "positive",
              "value_type": "event"
            }
          ]
        },
        {
          "name": "Attack",
          "items": [
            {
              "key": "bigChanceScored",
              "name": "Big chances scored",
              "home": "1",
              "away": "2",
              "home_value": 1,
              "away_value": 2,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "bigChanceMissed",
              "name": "Big chances missed",
              "home": "0",
              "away": "2",
              "home_value": 0,
              "away_value": 2,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "negative",
              "value_type": "event"
            },
            {
              "key": "accurateThroughBall",
              "name": "Through balls",
              "home": "1",
              "away": "1",
              "home_value": 1,
              "away_value": 1,
              "home_total": null,
              "away_total": null,
              "compare_code": 3,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "fouledFinalThird",
              "name": "Fouled in final third",
              "home": "0",
              "away": "2",
              "home_value": 0,
              "away_value": 2,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "offsides",
              "name": "Offsides",
              "home": "1",
              "away": "1",
              "home_value": 1,
              "away_value": 1,
              "home_total": null,
              "away_total": null,
              "compare_code": 3,
              "statistics_type": "negative",
              "value_type": "event"
            }
          ]
        },
        {
          "name": "Passes",
          "items": [
            {
              "key": "accuratePasses",
              "name": "Accurate passes",
              "home": "180",
              "away": "204",
              "home_value": 180,
              "away_value": 204,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "throwIns",
              "name": "Throw-ins",
              "home": "8",
              "away": "4",
              "home_value": 8,
              "away_value": 4,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "finalThirdEntries",
              "name": "Final third entries",
              "home": "20",
              "away": "20",
              "home_value": 20,
              "away_value": 20,
              "home_total": null,
              "away_total": null,
              "compare_code": 3,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "accurateLongBalls",
              "name": "Long balls",
              "home": "4/10 (40%)",
              "away": "13/24 (54%)",
              "home_value": 4,
              "away_value": 13,
              "home_total": 10,
              "away_total": 24,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "team"
            },
            {
              "key": "accurateCross",
              "name": "Crosses",
              "home": "0/4 (0%)",
              "away": "3/8 (38%)",
              "home_value": 0,
              "away_value": 3,
              "home_total": 4,
              "away_total": 8,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "team"
            }
          ]
        },
        {
          "name": "Duels",
          "items": [
            {
              "key": "duelWonPercent",
              "name": "Duels",
              "home": "24%",
              "away": "76%",
              "home_value": 24,
              "away_value": 76,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "dispossessed",
              "name": "Dispossessed",
              "home": "8",
              "away": "3",
              "home_value": 8,
              "away_value": 3,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "negative",
              "value_type": "event"
            },
            {
              "key": "groundDuelsPercentage",
              "name": "Ground duels",
              "home": "8/34 (24%)",
              "away": "26/34 (76%)",
              "home_value": 8,
              "away_value": 26,
              "home_total": 34,
              "away_total": 34,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "team"
            },
            {
              "key": "aerialDuelsPercentage",
              "name": "Aerial duels",
              "home": "1/4 (25%)",
              "away": "3/4 (75%)",
              "home_value": 1,
              "away_value": 3,
              "home_total": 4,
              "away_total": 4,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "team"
            },
            {
              "key": "dribblesPercentage",
              "name": "Dribbles",
              "home": "4/13 (31%)",
              "away": "2/3 (67%)",
              "home_value": 4,
              "away_value": 2,
              "home_total": 13,
              "away_total": 3,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "team"
            }
          ]
        },
        {
          "name": "Defending",
          "items": [
            {
              "key": "wonTacklePercent",
              "name": "Tackles won",
              "home": "25%",
              "away": "71%",
              "home_value": 1,
              "away_value": 12,
              "home_total": 4,
              "away_total": 17,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "team"
            },
            {
              "key": "totalTackle",
              "name": "Total tackles",
              "home": "4",
              "away": "17",
              "home_value": 4,
              "away_value": 17,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "interceptionWon",
              "name": "Interceptions",
              "home": "3",
              "away": "6",
              "home_value": 3,
              "away_value": 6,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "ballRecovery",
              "name": "Recoveries",
              "home": "15",
              "away": "19",
              "home_value": 15,
              "away_value": 19,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "totalClearance",
              "name": "Clearances",
              "home": "9",
              "away": "13",
              "home_value": 9,
              "away_value": 13,
              "home_total": null,
              "away_total": null,
              "compare_code": 2,
              "statistics_type": "positive",
              "value_type": "event"
            }
          ]
        },
        {
          "name": "Goalkeeping",
          "items": [
            {
              "key": "goalkeeperSaves",
              "name": "Total saves",
              "home": "3",
              "away": "0",
              "home_value": 3,
              "away_value": 0,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            },
            {
              "key": "goalKicks",
              "name": "Goal kicks",
              "home": "4",
              "away": "3",
              "home_value": 4,
              "away_value": 3,
              "home_total": null,
              "away_total": null,
              "compare_code": 1,
              "statistics_type": "positive",
              "value_type": "event"
            }
          ]
        }
      ]
    }
  ]
}