Overview

The MatchSummary endpoint returns the complete statistical summary of a match. It includes:
  • Match metadata
  • Stadium and referee information
  • Final score
  • Coaches of both teams
  • Detailed performance statistics for both teams
The statistical data covers multiple analytical categories including:
  • Passing
  • Crossing
  • Long passes
  • Ball possession
  • Defensive actions
  • Expected Threat (xT)
  • Expected Goals (xG)
  • Attempts and chances
  • Cards and fouls
  • Dribbles
  • Ball recoveries
  • Possession time and touches
This endpoint is typically used for:
  • Post-match analysis dashboards
  • Broadcast statistics
  • Match reports
  • Data analytics platforms
  • Performance evaluation tools
GET /api.php

Parameters

module
string
Always use api
api
string
The API name. Use MatchSummary
version
string
API version. Use V2
response
string
Output format (json or xml)
lang
string
Language of returned text (en or ar)
match_id
integer
The unique identifier of the match

Example Request

curl --request GET \
--url "https://korastats.pro/pro/api.php}?module=api&api=MatchSummary&version=V2&response=json&lang=en&match_id=8200"
{
  "result": "string",
  "message": "string",
  "data": {
    "_type": "MATCH SUMMARY",
    "matchId": "integer",
    "tournament": "string",
    "season": "string",
    "round": "integer",
    "dateTime": "YYYY-MM-DD HH:MM:SS",
    "lastUpdateDateTime": "YYYY-MM-DD HH:MM:SS",

    "stadium": {
      "_type": "STADIUM",
      "id": "integer",
      "name": "string"
    },

    "referee": {
      "_type": "REFEREE",
      "id": "integer",
      "name": "string",
      "nationality": {
        "id": "integer",
        "name": "string"
      }
    },

    "score": {
      "home": "integer",
      "away": "integer"
    },

    "home": {
      "_type": "TEAM SUMMARY",
      "team": {
        "id": "integer",
        "name": "string"
      },
      "coach": {
        "id": "integer",
        "name": "string"
      },
      "stats": {}
    },

    "away": {
      "_type": "TEAM SUMMARY",
      "team": {
        "id": "integer",
        "name": "string"
      },
      "coach": {
        "id": "integer",
        "name": "string"
      },
      "stats": {}
    }
  }
}