Overview

This endpoint returns the complete statistical dataset for a specific team within a season. The response includes the team information and all aggregated statistics recorded during the season. Statistics cover multiple performance areas including:
  • passing
  • attacking metrics
  • defensive actions
  • discipline
  • possession metrics
  • expected threat metrics
  • set piece performance
  • time-based statistics

Typical use cases

  • Retrieve the full statistical profile of a team in a tournament
  • Build detailed team performance dashboards
  • Generate advanced analytics reports
  • Compare teams across tournaments
  • Feed analytical models or scouting tools
Each statistic includes:
  • statistic ID
  • statistic name
  • aggregated value for the tournament
GET /api.php

Parameters

module
string
Always use api
api
string
The API name, use TournamentTeamStats
version
string
The API version (use V2)
lang
string
en for English, ar for Arabic
response
string
Output format (json or xml)
key
string
Your API key
team_id
string
The team ID (example: 2)
tournament_id
string
The tournament ID (example: 560)

Example Request

curl --request GET \
  --url "https://korastats.pro/pro/api.php?module=api&api=TournamentTeamStats&version=V2&lang=en&response=json&key=YOUR_API_KEY&team_id=2&tournament_id=560"
{
  "result": "string",
  "message": "string",
  "data": {
    "_type": "TEAM",
    "id": "integer",
    "name": "string",

    "stats": [
      {
        "_type": "STAT",
        "id": "integer",
        "stat": "string",
        "value": "number"
      }
    ]
  }
}