Overview

The MatchPlayersStats endpoint returns the complete statistical performance of all players involved in a match. The response contains a list of players from both teams, including:
  • Player identity and profile information
  • Team association
  • Position and shirt number
  • Detailed performance statistics
Each player entry includes the same statistical structure used in the MatchPlayerStats endpoint. This endpoint is typically used for:
  • Full match player analysis
  • Data synchronization systems
  • Scouting platforms
  • Match reports
  • Broadcast graphics
  • Analytical dashboards
If a player did not record any statistical activity, the stats field may return null. GET /api.php

Parameters

module
string
Always use api
api
string
API name. Use MatchPlayersStats
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
Unique identifier of the match
since
string
Optional timestamp used for incremental synchronization.
Format: YYYY-MM-DD HH:MM:SS
key
string
API authentication key

Example Request

curl --request GET \
--url "https://korastats.pro/pro/api.php?module=api&api=MatchPlayersStats&version=V2&response=json&lang=en&match_id=25997&since=2024-03-09%2005:31:02&key=YOUR_API_KEY"
{
  "result": "string",
  "message": "string",
  "data": {
    "_type": "PLAYERS",
    "players": [
      {
        "_type": "PLAYER",
        "id": "integer",
        "name": "string",
        "nickname": "string",
        "dob": "YYYY-MM-DD",
        "shirtnumber": "integer",

        "position": {
          "_type": "POSITION",
          "id": "integer",
          "name": "string"
        },

        "team": {
          "_type": "TEAM",
          "id": "integer",
          "name": "string"
        },

        "stats": {}
      }
    ]
  }
}