Overview
This endpoint returns all teams participating in a tournament together with their squad list.
Typical use cases
- Retrieve all tournament squads
- Build squad views for teams
- Load players available for match lineups
- Generate scouting or analysis datasets
Each team contains a list of players, including their:
- full name
- nickname
- jersey number
- date of birth
- primary and secondary positions
- nationality
GET /api.php
Parameters
The API name, use TournamentTeamPlayerList
en for English, ar for Arabic
Output format (json or xml)
The tournament ID (example: 211)
Example Request
curl --request GET \
--url "https://premium.korastats.pro/api.php?module=api&api=TournamentTeamPlayerList&version=V2&lang=en&response=json&key=YOUR_API_KEY&tournament_id=211"
Response
{
"result": "string",
"message": "string",
"data": {
"_type": "TOURNAMENT",
"id": "integer",
"tournament": "string",
"season": "string",
"startDate": "YYYY-MM-DD",
"endDate": "YYYY-MM-DD",
"teams": [
{
"_type": "TEAM",
"id": "integer",
"team": "string",
"players": [
{
"_type": "PLAYER",
"id": "integer",
"name": "string",
"nickname": "string",
"dob": "YYYY-MM-DD",
"number": "integer",
"position": {
"primary": {
"_type": "POSITION",
"id": "integer",
"name": "string"
},
"secondary": {
"_type": "POSITION",
"id": "integer",
"name": "string"
}
},
"nationality": {
"_type": "NATIONALITY",
"id": "integer",
"name": "string"
}
}
]
}
]
}
}