Overview

The Season Structure API returns the complete competition structure for one season. The response lists each stage in its configured order, identifies whether it is a group or knockout stage, describes its format and number of rounds, and returns the groups belonging to each stage. Use the optional expansion parameters to control the response size:
  • Set include_teams=1 to include the teams assigned to each group, together with their season-stage records.
  • Set include_matches=1 to include every match assigned to each group, including the stadium, home and away teams, coaches, score, referee, assistant referees, and fourth official.
  • Set both parameters to 0, or omit them, when only the structural hierarchy is required.
The endpoint returns the hierarchy as season → stages → groups → teams/matches. A knockout stage is also represented by a group container, such as Quarter-finals or Main, so clients can process all stages consistently.

Typical Use Cases

  • Build a complete season navigation tree.
  • Display group-stage and knockout-stage structures.
  • List the teams participating in each group or knockout round.
  • Retrieve all fixtures grouped by competition stage.
  • Synchronize season structures with broadcast, media, and analytics systems.
  • Load a lightweight structure first, then request teams or matches only when needed.

Parameters

module
string
required
The API module. This value is fixed and must always be api.
api
string
required
The endpoint name. This value is fixed and must always be SeasonStructure.
version
string
required
The API version. Use V2.
season_id
integer
required
The unique KoraStats season identifier. For example, 1356 identifies AFCON Women — Morocco 2025.
include_teams
boolean
Controls whether the teams array is returned inside every group. Use 1 to include teams or 0 to exclude them. If omitted, teams are not included.
include_matches
boolean
Controls whether the matches array is returned inside every group. Use 1 to include matches or 0 to exclude them. If omitted, matches are not included.
lang
string
required
The response language code. Use en for English.
response
string
required
The response format. Use json.
key
string
required
Your KoraStats API key. Keep this value secure and do not expose it in client-side applications.

Endpoint

GET https://premium.korastats.pro/api.php
https://premium.korastats.pro/api.php?module=api&api=SeasonStructure&version=V2&season_id=1356&include_teams=1&include_matches=1&lang=en&response=json&key=YOUR_API_KEY

Code Examples

curl --get "https://premium.korastats.pro/api.php" \
  --data-urlencode "module=api" \
  --data-urlencode "api=SeasonStructure" \
  --data-urlencode "version=V2" \
  --data-urlencode "season_id=1356" \
  --data-urlencode "include_teams=1" \
  --data-urlencode "include_matches=1" \
  --data-urlencode "lang=en" \
  --data-urlencode "response=json" \
  --data-urlencode "key=YOUR_API_KEY"

Response Example

The following response was generated with both include_teams=1 and include_matches=1.
{
  "result": true,
  "title": "Success",
  "message": "5 stages retrieved.",
  "object": {
    "_type": "SEASON",
    "id": 1356,
    "tournament": {
      "id": 582,
      "name": "AFCON Women"
    },
    "season": "Morocco 2025",
    "stages": [
      {
        "_type": "STAGE",
        "id": 2243,
        "stage": "Group Stage",
        "order": 1,
        "stageType": "GROUP_STAGE",
        "nature": "LEAGUE",
        "rounds": 1,
        "format": "SINGLE_ROUND_ROBIN",
        "groups": [
          {
            "_type": "GROUP",
            "id": 3102,
            "group": "Group A",
            "teams": [
              {
                "_type": "TEAM",
                "id": 2145,
                "team": "Morocco",
                "matches": 3,
                "points": 7,
                "goals_scored": 7,
                "goals_conceded": 4,
                "goals_difference": 3,
                "won": 2,
                "draw": 1,
                "lost": 0,
                "goals_scored_home": 3,
                "goals_conceded_home": 2,
                "goals_difference_home": 1,
                "goals_scored_away": 4,
                "goals_conceded_away": 2,
                "goals_difference_away": 2,
                "lastupdate": "2026-07-21 03:03:37"
              },
              {
                "_type": "TEAM",
                "id": 2122,
                "team": "Zambia",
                "matches": 3,
                "points": 7,
                "goals_scored": 6,
                "goals_conceded": 4,
                "goals_difference": 2,
                "won": 2,
                "draw": 1,
                "lost": 0,
                "goals_scored_home": 4,
                "goals_conceded_home": 2,
                "goals_difference_home": 2,
                "goals_scored_away": 2,
                "goals_conceded_away": 2,
                "goals_difference_away": 0,
                "lastupdate": "2026-07-21 03:03:38"
              },
              {
                "_type": "TEAM",
                "id": 23247,
                "team": "Senegal",
                "matches": 3,
                "points": 3,
                "goals_scored": 6,
                "goals_conceded": 4,
                "goals_difference": 2,
                "won": 1,
                "draw": 0,
                "lost": 2,
                "goals_scored_home": 4,
                "goals_conceded_home": 0,
                "goals_difference_home": 4,
                "goals_scored_away": 2,
                "goals_conceded_away": 4,
                "goals_difference_away": -2,
                "lastupdate": "2026-07-21 03:03:38"
              },
              {
                "_type": "TEAM",
                "id": 23258,
                "team": "DR Congo",
                "matches": 3,
                "points": 0,
                "goals_scored": 2,
                "goals_conceded": 9,
                "goals_difference": -7,
                "won": 0,
                "draw": 0,
                "lost": 3,
                "goals_scored_home": 2,
                "goals_conceded_home": 4,
                "goals_difference_home": -2,
                "goals_scored_away": 0,
                "goals_conceded_away": 5,
                "goals_difference_away": -5,
                "lastupdate": "2026-07-21 03:03:38"
              }
            ],
            "matches": [
              {
                "_type": "MATCH",
                "id": 77135,
                "dateTime": "2025-07-12 22:00:00",
                "lastUpdateDateTime": "2025-07-14 14:44:43",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 862,
                  "name": "Stade El Bachir"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 2122,
                    "side": "Home",
                    "team": "Zambia",
                    "coach": {
                      "_type": "COACH",
                      "id": 7330,
                      "name": "Nora Häuptle",
                      "dob": "1983-09-09",
                      "gender": "FEMALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 180,
                        "name": "Switzerland"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 23258,
                    "side": "Away",
                    "team": "DR Congo",
                    "coach": {
                      "_type": "COACH",
                      "id": 7319,
                      "name": "Hervé Happy",
                      "dob": null,
                      "gender": "MALE",
                      "nationality": null
                    }
                  }
                },
                "score": {
                  "home": 1,
                  "away": 0
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 11081,
                  "name": "Josephine Wanjiku",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 94,
                    "name": "Kenya"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 1847,
                  "name": "Fanta Idrissa Kone",
                  "dob": "1995-05-05",
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 116,
                    "name": "Mali"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 5541,
                  "name": "Yekini Shitou",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 21,
                    "name": "Benin"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 2404,
                  "name": "Suavis Iratunga",
                  "dob": "1987-12-30",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 31,
                    "name": "Burundi"
                  }
                }
              },
              {
                "_type": "MATCH",
                "id": 77136,
                "dateTime": "2025-07-12 22:00:00",
                "lastUpdateDateTime": "2025-07-14 15:12:09",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 53,
                  "name": "Prince Moulay Abdellah Stadium"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 2145,
                    "side": "Home",
                    "team": "Morocco",
                    "coach": {
                      "_type": "COACH",
                      "id": 2885,
                      "name": "Reynald Michel Sebastian Pedros",
                      "dob": "1971-10-10",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 65,
                        "name": "France"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 23247,
                    "side": "Away",
                    "team": "Senegal",
                    "coach": {
                      "_type": "COACH",
                      "id": 7318,
                      "name": "Mame Moussa Cissé",
                      "dob": null,
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 161,
                        "name": "Senegal"
                      }
                    }
                  }
                },
                "score": {
                  "home": 1,
                  "away": 0
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 4571,
                  "name": "Shamirah Nabadda",
                  "dob": "1991-09-26",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 194,
                    "name": "Uganda"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 4672,
                  "name": "Fides Bangurambona",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 31,
                    "name": "Burundi"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 5549,
                  "name": "Sakina Hamidou Alfa",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 135,
                    "name": "Niger"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 11076,
                  "name": "Awa Ilboudo Alphonsine",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 29,
                    "name": "Burkina Faso"
                  }
                }
              },
              {
                "_type": "MATCH",
                "id": 77125,
                "dateTime": "2025-07-09 19:00:00",
                "lastUpdateDateTime": "2025-07-11 01:36:50",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 862,
                  "name": "Stade El Bachir"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 2122,
                    "side": "Home",
                    "team": "Zambia",
                    "coach": {
                      "_type": "COACH",
                      "id": 7330,
                      "name": "Nora Häuptle",
                      "dob": "1983-09-09",
                      "gender": "FEMALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 180,
                        "name": "Switzerland"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 23247,
                    "side": "Away",
                    "team": "Senegal",
                    "coach": {
                      "_type": "COACH",
                      "id": 7318,
                      "name": "Mame Moussa Cissé",
                      "dob": null,
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 161,
                        "name": "Senegal"
                      }
                    }
                  }
                },
                "score": {
                  "home": 3,
                  "away": 2
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 2386,
                  "name": "Amedome Vincentia",
                  "dob": "1981-08-10",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 187,
                    "name": "Togo"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 5541,
                  "name": "Yekini Shitou",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 21,
                    "name": "Benin"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 5549,
                  "name": "Sakina Hamidou Alfa",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 135,
                    "name": "Niger"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 11086,
                  "name": "Yemissi Eunice Akintoye",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 136,
                    "name": "Nigeria"
                  }
                }
              },
              {
                "_type": "MATCH",
                "id": 77126,
                "dateTime": "2025-07-09 22:00:00",
                "lastUpdateDateTime": "2025-07-10 16:25:18",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 4058,
                  "name": "Rabat Olympic Stadium"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 23258,
                    "side": "Home",
                    "team": "DR Congo",
                    "coach": {
                      "_type": "COACH",
                      "id": 7319,
                      "name": "Hervé Happy",
                      "dob": null,
                      "gender": "MALE",
                      "nationality": null
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 2145,
                    "side": "Away",
                    "team": "Morocco",
                    "coach": {
                      "_type": "COACH",
                      "id": 2870,
                      "name": "Jorge Vilda Rodríguez",
                      "dob": "1981-07-07",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 174,
                        "name": "Spain"
                      }
                    }
                  }
                },
                "score": {
                  "home": 2,
                  "away": 4
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 11085,
                  "name": "Antsino Twanyanyukwa",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 129,
                    "name": "Namibia"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 1774,
                  "name": "Mariem Chedad",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 119,
                    "name": "Mauritania"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 4672,
                  "name": "Fides Bangurambona",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 31,
                    "name": "Burundi"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 11081,
                  "name": "Josephine Wanjiku",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 94,
                    "name": "Kenya"
                  }
                }
              },
              {
                "_type": "MATCH",
                "id": 76856,
                "dateTime": "2025-07-05 23:00:00",
                "lastUpdateDateTime": "2025-07-07 10:28:10",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 53,
                  "name": "Prince Moulay Abdellah Stadium"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 2145,
                    "side": "Home",
                    "team": "Morocco",
                    "coach": {
                      "_type": "COACH",
                      "id": 2870,
                      "name": "Jorge Vilda Rodríguez",
                      "dob": "1981-07-07",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 174,
                        "name": "Spain"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 2122,
                    "side": "Away",
                    "team": "Zambia",
                    "coach": {
                      "_type": "COACH",
                      "id": 2868,
                      "name": "Bruce Mwape",
                      "dob": "1959-10-26",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 204,
                        "name": "Zambia"
                      }
                    }
                  }
                },
                "score": {
                  "home": 2,
                  "away": 2
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 4571,
                  "name": "Shamirah Nabadda",
                  "dob": "1991-09-26",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 194,
                    "name": "Uganda"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 1847,
                  "name": "Fanta Idrissa Kone",
                  "dob": "1995-05-05",
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 116,
                    "name": "Mali"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 5257,
                  "name": "Alice Umutesi",
                  "dob": null,
                  "gender": "MALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 42,
                    "name": "Democratic Republic of the Congo"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 2726,
                  "name": "UMUTONI ALINE",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 153,
                    "name": "Rwanda"
                  }
                }
              },
              {
                "_type": "MATCH",
                "id": 76857,
                "dateTime": "2025-07-06 17:00:00",
                "lastUpdateDateTime": "2025-07-08 13:12:24",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 862,
                  "name": "Stade El Bachir"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 23247,
                    "side": "Home",
                    "team": "Senegal",
                    "coach": {
                      "_type": "COACH",
                      "id": 7318,
                      "name": "Mame Moussa Cissé",
                      "dob": null,
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 161,
                        "name": "Senegal"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 23258,
                    "side": "Away",
                    "team": "DR Congo",
                    "coach": {
                      "_type": "COACH",
                      "id": 7319,
                      "name": "Hervé Happy",
                      "dob": null,
                      "gender": "MALE",
                      "nationality": null
                    }
                  }
                },
                "score": {
                  "home": 4,
                  "away": 0
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 11079,
                  "name": "Shahenda Saad Elmaghrabi",
                  "dob": "1989-12-12",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 57,
                    "name": "Egypt"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 1435,
                  "name": "Yara Atef",
                  "dob": "1993-01-01",
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 57,
                    "name": "Egypt"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 1711,
                  "name": "Afine Houda",
                  "dob": "1983-10-04",
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 190,
                    "name": "Tunisia"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 7135,
                  "name": "Dorsaf Ganouati",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 190,
                    "name": "Tunisia"
                  }
                }
              }
            ]
          },
          {
            "_type": "GROUP",
            "id": 3103,
            "group": "Group B",
            "teams": [
              {
                "_type": "TEAM",
                "id": 2118,
                "team": "Nigeria",
                "matches": 3,
                "points": 7,
                "goals_scored": 4,
                "goals_conceded": 0,
                "goals_difference": 4,
                "won": 2,
                "draw": 1,
                "lost": 0,
                "goals_scored_home": 3,
                "goals_conceded_home": 0,
                "goals_difference_home": 3,
                "goals_scored_away": 1,
                "goals_conceded_away": 0,
                "goals_difference_away": 1,
                "lastupdate": "2026-07-21 03:03:38"
              },
              {
                "_type": "TEAM",
                "id": 23251,
                "team": "Algeria",
                "matches": 3,
                "points": 5,
                "goals_scored": 1,
                "goals_conceded": 0,
                "goals_difference": 1,
                "won": 1,
                "draw": 2,
                "lost": 0,
                "goals_scored_home": 1,
                "goals_conceded_home": 0,
                "goals_difference_home": 1,
                "goals_scored_away": 0,
                "goals_conceded_away": 0,
                "goals_difference_away": 0,
                "lastupdate": "2026-07-21 03:03:38"
              },
              {
                "_type": "TEAM",
                "id": 23255,
                "team": "Botswana",
                "matches": 3,
                "points": 3,
                "goals_scored": 2,
                "goals_conceded": 3,
                "goals_difference": -1,
                "won": 1,
                "draw": 0,
                "lost": 2,
                "goals_scored_home": 0,
                "goals_conceded_home": 1,
                "goals_difference_home": -1,
                "goals_scored_away": 2,
                "goals_conceded_away": 2,
                "goals_difference_away": 0,
                "lastupdate": "2026-07-21 03:03:38"
              },
              {
                "_type": "TEAM",
                "id": 23250,
                "team": "Tunisia",
                "matches": 3,
                "points": 1,
                "goals_scored": 1,
                "goals_conceded": 5,
                "goals_difference": -4,
                "won": 0,
                "draw": 1,
                "lost": 2,
                "goals_scored_home": 1,
                "goals_conceded_home": 2,
                "goals_difference_home": -1,
                "goals_scored_away": 0,
                "goals_conceded_away": 3,
                "goals_difference_away": -3,
                "lastupdate": "2026-07-21 03:03:38"
              }
            ],
            "matches": [
              {
                "_type": "MATCH",
                "id": 77133,
                "dateTime": "2025-07-13 22:00:00",
                "lastUpdateDateTime": "2025-07-15 11:53:11",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 80,
                  "name": "Abuja National Stadium"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 2118,
                    "side": "Home",
                    "team": "Nigeria",
                    "coach": {
                      "_type": "COACH",
                      "id": 2866,
                      "name": "Randy Marlon Waldrum",
                      "dob": "1956-09-25",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 209,
                        "name": "United States"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 23251,
                    "side": "Away",
                    "team": "Algeria",
                    "coach": {
                      "_type": "COACH",
                      "id": 7310,
                      "name": "Farid benstiti",
                      "dob": null,
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 4,
                        "name": "Algeria"
                      }
                    }
                  }
                },
                "score": {
                  "home": 0,
                  "away": 0
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 11085,
                  "name": "Antsino Twanyanyukwa",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 129,
                    "name": "Namibia"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 2142,
                  "name": "Diana Chikotescha",
                  "dob": "1988-07-18",
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 204,
                    "name": "Zambia"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 5336,
                  "name": "Nancy Kasitu",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 204,
                    "name": "Zambia"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 1635,
                  "name": "Akona Zenith Makhalima",
                  "dob": "1988-03-27",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 171,
                    "name": "South Africa"
                  }
                }
              },
              {
                "_type": "MATCH",
                "id": 77134,
                "dateTime": "2025-07-13 22:00:00",
                "lastUpdateDateTime": "2025-07-17 13:10:03",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 1171,
                  "name": "Stade Père Jégo"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 23250,
                    "side": "Home",
                    "team": "Tunisia",
                    "coach": {
                      "_type": "COACH",
                      "id": 7314,
                      "name": "Kamel Saada",
                      "dob": null,
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 190,
                        "name": "Tunisia"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 23255,
                    "side": "Away",
                    "team": "Botswana",
                    "coach": {
                      "_type": "COACH",
                      "id": 7311,
                      "name": "Alex Basimanebotlhe Malete",
                      "dob": "1990-02-28",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 25,
                        "name": "Botswana"
                      }
                    }
                  }
                },
                "score": {
                  "home": 1,
                  "away": 2
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 6536,
                  "name": "Aline Marie Noelle  Etong",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 33,
                    "name": "Cameroon"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 1774,
                  "name": "Mariem Chedad",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 119,
                    "name": "Mauritania"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 6437,
                  "name": "Kanjinga Mujanayi",
                  "dob": null,
                  "gender": "MALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 42,
                    "name": "Democratic Republic of the Congo"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 2726,
                  "name": "UMUTONI ALINE",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 153,
                    "name": "Rwanda"
                  }
                }
              },
              {
                "_type": "MATCH",
                "id": 77127,
                "dateTime": "2025-07-10 19:00:00",
                "lastUpdateDateTime": "2025-07-13 12:11:14",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 1171,
                  "name": "Stade Père Jégo"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 23250,
                    "side": "Home",
                    "team": "Tunisia",
                    "coach": {
                      "_type": "COACH",
                      "id": 7314,
                      "name": "Kamel Saada",
                      "dob": null,
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 190,
                        "name": "Tunisia"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 23251,
                    "side": "Away",
                    "team": "Algeria",
                    "coach": {
                      "_type": "COACH",
                      "id": 7310,
                      "name": "Farid benstiti",
                      "dob": null,
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 4,
                        "name": "Algeria"
                      }
                    }
                  }
                },
                "score": {
                  "home": 0,
                  "away": 0
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 1635,
                  "name": "Akona Zenith Makhalima",
                  "dob": "1988-03-27",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 171,
                    "name": "South Africa"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 2142,
                  "name": "Diana Chikotescha",
                  "dob": "1988-07-18",
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 204,
                    "name": "Zambia"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 5596,
                  "name": "Hannah Moses",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 105,
                    "name": "Liberia"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 11076,
                  "name": "Awa Ilboudo Alphonsine",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 29,
                    "name": "Burkina Faso"
                  }
                }
              },
              {
                "_type": "MATCH",
                "id": 77128,
                "dateTime": "2025-07-10 22:00:00",
                "lastUpdateDateTime": "2025-07-13 12:56:28",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 1230,
                  "name": "Stade Larbi Zaouli"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 23255,
                    "side": "Home",
                    "team": "Botswana",
                    "coach": {
                      "_type": "COACH",
                      "id": 7311,
                      "name": "Alex Basimanebotlhe Malete",
                      "dob": "1990-02-28",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 25,
                        "name": "Botswana"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 2118,
                    "side": "Away",
                    "team": "Nigeria",
                    "coach": {
                      "_type": "COACH",
                      "id": 7315,
                      "name": "Justin Pwanidi Madugu",
                      "dob": "1964-01-19",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 136,
                        "name": "Nigeria"
                      }
                    }
                  }
                },
                "score": {
                  "home": 0,
                  "away": 1
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 2726,
                  "name": "UMUTONI ALINE",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 153,
                    "name": "Rwanda"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 5257,
                  "name": "Alice Umutesi",
                  "dob": null,
                  "gender": "MALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 42,
                    "name": "Democratic Republic of the Congo"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 5594,
                  "name": "Mahawa Kourouma",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 74,
                    "name": "Guinea"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 8334,
                  "name": "Aminta Fuiiah",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 9,
                    "name": "Armenia"
                  }
                }
              },
              {
                "_type": "MATCH",
                "id": 76858,
                "dateTime": "2025-07-06 19:00:00",
                "lastUpdateDateTime": "2025-07-08 13:57:54",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 1230,
                  "name": "Stade Larbi Zaouli"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 2118,
                    "side": "Home",
                    "team": "Nigeria",
                    "coach": {
                      "_type": "COACH",
                      "id": 2866,
                      "name": "Randy Marlon Waldrum",
                      "dob": "1956-09-25",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 209,
                        "name": "United States"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 23250,
                    "side": "Away",
                    "team": "Tunisia",
                    "coach": {
                      "_type": "COACH",
                      "id": 7314,
                      "name": "Kamel Saada",
                      "dob": null,
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 190,
                        "name": "Tunisia"
                      }
                    }
                  }
                },
                "score": {
                  "home": 3,
                  "away": 0
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 2404,
                  "name": "Suavis Iratunga",
                  "dob": "1987-12-30",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 31,
                    "name": "Burundi"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 4672,
                  "name": "Fides Bangurambona",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 31,
                    "name": "Burundi"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 5336,
                  "name": "Nancy Kasitu",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 204,
                    "name": "Zambia"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 11081,
                  "name": "Josephine Wanjiku",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 94,
                    "name": "Kenya"
                  }
                }
              },
              {
                "_type": "MATCH",
                "id": 76859,
                "dateTime": "2025-07-06 22:00:00",
                "lastUpdateDateTime": "2025-07-08 14:41:06",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 4054,
                  "name": "Racing Athletic"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 23251,
                    "side": "Home",
                    "team": "Algeria",
                    "coach": {
                      "_type": "COACH",
                      "id": 7310,
                      "name": "Farid benstiti",
                      "dob": null,
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 4,
                        "name": "Algeria"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 23255,
                    "side": "Away",
                    "team": "Botswana",
                    "coach": {
                      "_type": "COACH",
                      "id": 7311,
                      "name": "Alex Basimanebotlhe Malete",
                      "dob": "1990-02-28",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 25,
                        "name": "Botswana"
                      }
                    }
                  }
                },
                "score": {
                  "home": 1,
                  "away": 0
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 11082,
                  "name": "Samassa Yacine",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 119,
                    "name": "Mauritania"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 1774,
                  "name": "Mariem Chedad",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 119,
                    "name": "Mauritania"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 5568,
                  "name": "Tabara Mbodji",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 161,
                    "name": "Senegal"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 2386,
                  "name": "Amedome Vincentia",
                  "dob": "1981-08-10",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 187,
                    "name": "Togo"
                  }
                }
              }
            ]
          },
          {
            "_type": "GROUP",
            "id": 3104,
            "group": "Group C",
            "teams": [
              {
                "_type": "TEAM",
                "id": 2140,
                "team": "South Africa",
                "matches": 3,
                "points": 7,
                "goals_scored": 7,
                "goals_conceded": 1,
                "goals_difference": 6,
                "won": 2,
                "draw": 1,
                "lost": 0,
                "goals_scored_home": 6,
                "goals_conceded_home": 0,
                "goals_difference_home": 6,
                "goals_scored_away": 1,
                "goals_conceded_away": 1,
                "goals_difference_away": 0,
                "lastupdate": "2026-07-21 03:03:38"
              },
              {
                "_type": "TEAM",
                "id": 23252,
                "team": "Ghana",
                "matches": 3,
                "points": 4,
                "goals_scored": 5,
                "goals_conceded": 4,
                "goals_difference": 1,
                "won": 1,
                "draw": 1,
                "lost": 1,
                "goals_scored_home": 5,
                "goals_conceded_home": 2,
                "goals_difference_home": 3,
                "goals_scored_away": 0,
                "goals_conceded_away": 2,
                "goals_difference_away": -2,
                "lastupdate": "2026-07-21 03:03:38"
              },
              {
                "_type": "TEAM",
                "id": 23254,
                "team": "Mali",
                "matches": 3,
                "points": 4,
                "goals_scored": 2,
                "goals_conceded": 5,
                "goals_difference": -3,
                "won": 1,
                "draw": 1,
                "lost": 1,
                "goals_scored_home": 1,
                "goals_conceded_home": 0,
                "goals_difference_home": 1,
                "goals_scored_away": 1,
                "goals_conceded_away": 5,
                "goals_difference_away": -4,
                "lastupdate": "2026-07-21 03:03:38"
              },
              {
                "_type": "TEAM",
                "id": 23253,
                "team": "Tanzania",
                "matches": 3,
                "points": 1,
                "goals_scored": 2,
                "goals_conceded": 6,
                "goals_difference": -4,
                "won": 0,
                "draw": 1,
                "lost": 2,
                "goals_scored_home": 1,
                "goals_conceded_home": 1,
                "goals_difference_home": 0,
                "goals_scored_away": 1,
                "goals_conceded_away": 5,
                "goals_difference_away": -4,
                "lastupdate": "2026-07-21 03:03:38"
              }
            ],
            "matches": [
              {
                "_type": "MATCH",
                "id": 77131,
                "dateTime": "2025-07-14 22:00:00",
                "lastUpdateDateTime": "2025-07-15 14:45:52",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 362,
                  "name": "Stade Municipal de Berkane"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 23252,
                    "side": "Home",
                    "team": "Ghana",
                    "coach": {
                      "_type": "COACH",
                      "id": 7323,
                      "name": "Lars Kim Björkegren",
                      "dob": "1981-12-18",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 179,
                        "name": "Sweden"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 23253,
                    "side": "Away",
                    "team": "Tanzania",
                    "coach": {
                      "_type": "COACH",
                      "id": 7321,
                      "name": "Bakari Nyundo Shime",
                      "dob": "1970-01-04",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 184,
                        "name": "Tanzania"
                      }
                    }
                  }
                },
                "score": {
                  "home": 4,
                  "away": 1
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 7135,
                  "name": "Dorsaf Ganouati",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 190,
                    "name": "Tunisia"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 1711,
                  "name": "Afine Houda",
                  "dob": "1983-10-04",
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 190,
                    "name": "Tunisia"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 5594,
                  "name": "Mahawa Kourouma",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 74,
                    "name": "Guinea"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 6244,
                  "name": "Ghada Mehat",
                  "dob": "1995-05-01",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 4,
                    "name": "Algeria"
                  }
                }
              },
              {
                "_type": "MATCH",
                "id": 77132,
                "dateTime": "2025-07-14 22:00:00",
                "lastUpdateDateTime": "2025-07-16 12:03:02",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 2271,
                  "name": "Stade d'Honneur d'Oujda"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 2140,
                    "side": "Home",
                    "team": "South Africa",
                    "coach": {
                      "_type": "COACH",
                      "id": 2878,
                      "name": "Desiree Ellis",
                      "dob": "1963-03-14",
                      "gender": "FEMALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 171,
                        "name": "South Africa"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 23254,
                    "side": "Away",
                    "team": "Mali",
                    "coach": {
                      "_type": "COACH",
                      "id": 7322,
                      "name": "Saloum Mohamed",
                      "dob": null,
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 116,
                        "name": "Mali"
                      }
                    }
                  }
                },
                "score": {
                  "home": 4,
                  "away": 0
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 2388,
                  "name": "Bouchra Karboubi",
                  "dob": "1987-05-15",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 127,
                    "name": "Morocco"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 5547,
                  "name": "Ihsane Nouajli",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 127,
                    "name": "Morocco"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 5257,
                  "name": "Alice Umutesi",
                  "dob": null,
                  "gender": "MALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 42,
                    "name": "Democratic Republic of the Congo"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 3126,
                  "name": "Sabah Sadir",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 127,
                    "name": "Morocco"
                  }
                }
              },
              {
                "_type": "MATCH",
                "id": 77129,
                "dateTime": "2025-07-11 19:00:00",
                "lastUpdateDateTime": "2025-07-13 13:22:50",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 362,
                  "name": "Stade Municipal de Berkane"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 23252,
                    "side": "Home",
                    "team": "Ghana",
                    "coach": {
                      "_type": "COACH",
                      "id": 7323,
                      "name": "Lars Kim Björkegren",
                      "dob": "1981-12-18",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 179,
                        "name": "Sweden"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 23254,
                    "side": "Away",
                    "team": "Mali",
                    "coach": {
                      "_type": "COACH",
                      "id": 7322,
                      "name": "Saloum Mohamed",
                      "dob": null,
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 116,
                        "name": "Mali"
                      }
                    }
                  }
                },
                "score": {
                  "home": 1,
                  "away": 1
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 6244,
                  "name": "Ghada Mehat",
                  "dob": "1995-05-01",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 4,
                    "name": "Algeria"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 2723,
                  "name": "Asma Ouahab",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 4,
                    "name": "Algeria"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 1435,
                  "name": "Yara Atef",
                  "dob": "1993-01-01",
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 57,
                    "name": "Egypt"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 11079,
                  "name": "Shahenda Saad Elmaghrabi",
                  "dob": "1989-12-12",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 57,
                    "name": "Egypt"
                  }
                }
              },
              {
                "_type": "MATCH",
                "id": 77130,
                "dateTime": "2025-07-11 22:00:00",
                "lastUpdateDateTime": "2025-07-12 18:17:36",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 2271,
                  "name": "Stade d'Honneur d'Oujda"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 23253,
                    "side": "Home",
                    "team": "Tanzania",
                    "coach": {
                      "_type": "COACH",
                      "id": 7321,
                      "name": "Bakari Nyundo Shime",
                      "dob": "1970-01-04",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 184,
                        "name": "Tanzania"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 2140,
                    "side": "Away",
                    "team": "South Africa",
                    "coach": {
                      "_type": "COACH",
                      "id": 2878,
                      "name": "Desiree Ellis",
                      "dob": "1963-03-14",
                      "gender": "FEMALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 171,
                        "name": "South Africa"
                      }
                    }
                  }
                },
                "score": {
                  "home": 1,
                  "away": 1
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 5324,
                  "name": "Natacha Konan",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 45,
                    "name": "Cote d'Ivoire"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 1736,
                  "name": "Atezambong Carine",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 33,
                    "name": "Cameroon"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 5568,
                  "name": "Tabara Mbodji",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 161,
                    "name": "Senegal"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 11077,
                  "name": "Aline Guimbang",
                  "dob": "1997-01-03",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 33,
                    "name": "Cameroon"
                  }
                }
              },
              {
                "_type": "MATCH",
                "id": 76860,
                "dateTime": "2025-07-07 19:00:00",
                "lastUpdateDateTime": "2025-07-09 13:51:20",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 2271,
                  "name": "Stade d'Honneur d'Oujda"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 2140,
                    "side": "Home",
                    "team": "South Africa",
                    "coach": {
                      "_type": "COACH",
                      "id": 2878,
                      "name": "Desiree Ellis",
                      "dob": "1963-03-14",
                      "gender": "FEMALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 171,
                        "name": "South Africa"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 23252,
                    "side": "Away",
                    "team": "Ghana",
                    "coach": {
                      "_type": "COACH",
                      "id": 7323,
                      "name": "Lars Kim Björkegren",
                      "dob": "1981-12-18",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 179,
                        "name": "Sweden"
                      }
                    }
                  }
                },
                "score": {
                  "home": 2,
                  "away": 0
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 2388,
                  "name": "Bouchra Karboubi",
                  "dob": "1987-05-15",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 127,
                    "name": "Morocco"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 2723,
                  "name": "Asma Ouahab",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 4,
                    "name": "Algeria"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 6715,
                  "name": "Ihssane Enouajli",
                  "dob": null,
                  "gender": "MALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 37,
                    "name": "Chad"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 3126,
                  "name": "Sabah Sadir",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 127,
                    "name": "Morocco"
                  }
                }
              },
              {
                "_type": "MATCH",
                "id": 76861,
                "dateTime": "2025-07-07 22:00:00",
                "lastUpdateDateTime": "2025-07-09 14:29:09",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 362,
                  "name": "Stade Municipal de Berkane"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 23254,
                    "side": "Home",
                    "team": "Mali",
                    "coach": {
                      "_type": "COACH",
                      "id": 7322,
                      "name": "Saloum Mohamed",
                      "dob": null,
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 116,
                        "name": "Mali"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 23253,
                    "side": "Away",
                    "team": "Tanzania",
                    "coach": {
                      "_type": "COACH",
                      "id": 7321,
                      "name": "Bakari Nyundo Shime",
                      "dob": "1970-01-04",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 184,
                        "name": "Tanzania"
                      }
                    }
                  }
                },
                "score": {
                  "home": 1,
                  "away": 0
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 6536,
                  "name": "Aline Marie Noelle  Etong",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 33,
                    "name": "Cameroon"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 1736,
                  "name": "Atezambong Carine",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 33,
                    "name": "Cameroon"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 6437,
                  "name": "Kanjinga Mujanayi",
                  "dob": null,
                  "gender": "MALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 42,
                    "name": "Democratic Republic of the Congo"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 5324,
                  "name": "Natacha Konan",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 45,
                    "name": "Cote d'Ivoire"
                  }
                }
              }
            ]
          }
        ]
      },
      {
        "_type": "STAGE",
        "id": 2313,
        "stage": "Quarter-finals",
        "order": 2,
        "stageType": "KNOCKOUT_STAGE",
        "nature": "KNOCKOUT",
        "rounds": 1,
        "format": "SINGLE_LEG",
        "groups": [
          {
            "_type": "GROUP",
            "id": 3187,
            "group": "Quarter-finals",
            "teams": [
              {
                "_type": "TEAM",
                "id": 2118,
                "team": "Nigeria",
                "matches": 1,
                "points": null,
                "goals_scored": null,
                "goals_conceded": null,
                "goals_difference": null,
                "won": 1,
                "draw": null,
                "lost": 0,
                "goals_scored_home": null,
                "goals_conceded_home": null,
                "goals_difference_home": null,
                "goals_scored_away": null,
                "goals_conceded_away": null,
                "goals_difference_away": null,
                "lastupdate": "2026-07-21 03:03:38"
              },
              {
                "_type": "TEAM",
                "id": 2122,
                "team": "Zambia",
                "matches": 1,
                "points": null,
                "goals_scored": null,
                "goals_conceded": null,
                "goals_difference": null,
                "won": 0,
                "draw": null,
                "lost": 1,
                "goals_scored_home": null,
                "goals_conceded_home": null,
                "goals_difference_home": null,
                "goals_scored_away": null,
                "goals_conceded_away": null,
                "goals_difference_away": null,
                "lastupdate": "2026-07-21 03:03:38"
              },
              {
                "_type": "TEAM",
                "id": 2140,
                "team": "South Africa",
                "matches": 1,
                "points": null,
                "goals_scored": null,
                "goals_conceded": null,
                "goals_difference": null,
                "won": 0,
                "draw": null,
                "lost": 1,
                "goals_scored_home": null,
                "goals_conceded_home": null,
                "goals_difference_home": null,
                "goals_scored_away": null,
                "goals_conceded_away": null,
                "goals_difference_away": null,
                "lastupdate": "2026-07-21 03:03:39"
              },
              {
                "_type": "TEAM",
                "id": 2145,
                "team": "Morocco",
                "matches": 1,
                "points": null,
                "goals_scored": null,
                "goals_conceded": null,
                "goals_difference": null,
                "won": 1,
                "draw": null,
                "lost": 0,
                "goals_scored_home": null,
                "goals_conceded_home": null,
                "goals_difference_home": null,
                "goals_scored_away": null,
                "goals_conceded_away": null,
                "goals_difference_away": null,
                "lastupdate": "2026-07-21 03:03:38"
              },
              {
                "_type": "TEAM",
                "id": 23247,
                "team": "Senegal",
                "matches": 1,
                "points": null,
                "goals_scored": null,
                "goals_conceded": null,
                "goals_difference": null,
                "won": 1,
                "draw": null,
                "lost": 0,
                "goals_scored_home": null,
                "goals_conceded_home": null,
                "goals_difference_home": null,
                "goals_scored_away": null,
                "goals_conceded_away": null,
                "goals_difference_away": null,
                "lastupdate": "2026-07-21 03:03:39"
              },
              {
                "_type": "TEAM",
                "id": 23251,
                "team": "Algeria",
                "matches": 1,
                "points": null,
                "goals_scored": null,
                "goals_conceded": null,
                "goals_difference": null,
                "won": 0,
                "draw": null,
                "lost": 1,
                "goals_scored_home": null,
                "goals_conceded_home": null,
                "goals_difference_home": null,
                "goals_scored_away": null,
                "goals_conceded_away": null,
                "goals_difference_away": null,
                "lastupdate": "2026-07-21 03:03:39"
              },
              {
                "_type": "TEAM",
                "id": 23252,
                "team": "Ghana",
                "matches": 1,
                "points": null,
                "goals_scored": null,
                "goals_conceded": null,
                "goals_difference": null,
                "won": 1,
                "draw": null,
                "lost": 0,
                "goals_scored_home": null,
                "goals_conceded_home": null,
                "goals_difference_home": null,
                "goals_scored_away": null,
                "goals_conceded_away": null,
                "goals_difference_away": null,
                "lastupdate": "2026-07-21 03:03:38"
              },
              {
                "_type": "TEAM",
                "id": 23254,
                "team": "Mali",
                "matches": 1,
                "points": null,
                "goals_scored": null,
                "goals_conceded": null,
                "goals_difference": null,
                "won": 0,
                "draw": null,
                "lost": 1,
                "goals_scored_home": null,
                "goals_conceded_home": null,
                "goals_difference_home": null,
                "goals_scored_away": null,
                "goals_conceded_away": null,
                "goals_difference_away": null,
                "lastupdate": "2026-07-21 03:03:38"
              }
            ],
            "matches": [
              {
                "_type": "MATCH",
                "id": 78196,
                "dateTime": "2025-07-18 19:00:00",
                "lastUpdateDateTime": "2025-07-20 11:51:36",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 1230,
                  "name": "Stade Larbi Zaouli"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 2118,
                    "side": "Home",
                    "team": "Nigeria",
                    "coach": {
                      "_type": "COACH",
                      "id": 2866,
                      "name": "Randy Marlon Waldrum",
                      "dob": "1956-09-25",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 209,
                        "name": "United States"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 2122,
                    "side": "Away",
                    "team": "Zambia",
                    "coach": {
                      "_type": "COACH",
                      "id": 7330,
                      "name": "Nora Häuptle",
                      "dob": "1983-09-09",
                      "gender": "FEMALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 180,
                        "name": "Switzerland"
                      }
                    }
                  }
                },
                "score": {
                  "home": 5,
                  "away": 0
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 2388,
                  "name": "Bouchra Karboubi",
                  "dob": "1987-05-15",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 127,
                    "name": "Morocco"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 5547,
                  "name": "Ihsane Nouajli",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 127,
                    "name": "Morocco"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 1711,
                  "name": "Afine Houda",
                  "dob": "1983-10-04",
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 190,
                    "name": "Tunisia"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 7135,
                  "name": "Dorsaf Ganouati",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 190,
                    "name": "Tunisia"
                  }
                }
              },
              {
                "_type": "MATCH",
                "id": 78197,
                "dateTime": "2025-07-18 22:00:00",
                "lastUpdateDateTime": "2025-07-20 12:27:33",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 53,
                  "name": "Prince Moulay Abdellah Stadium"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 2145,
                    "side": "Home",
                    "team": "Morocco",
                    "coach": {
                      "_type": "COACH",
                      "id": 2870,
                      "name": "Jorge Vilda Rodríguez",
                      "dob": "1981-07-07",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 174,
                        "name": "Spain"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 23254,
                    "side": "Away",
                    "team": "Mali",
                    "coach": {
                      "_type": "COACH",
                      "id": 7322,
                      "name": "Saloum Mohamed",
                      "dob": null,
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 116,
                        "name": "Mali"
                      }
                    }
                  }
                },
                "score": {
                  "home": 3,
                  "away": 1
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 1635,
                  "name": "Akona Zenith Makhalima",
                  "dob": "1988-03-27",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 171,
                    "name": "South Africa"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 2142,
                  "name": "Diana Chikotescha",
                  "dob": "1988-07-18",
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 204,
                    "name": "Zambia"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 5336,
                  "name": "Nancy Kasitu",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 204,
                    "name": "Zambia"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 5324,
                  "name": "Natacha Konan",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 45,
                    "name": "Cote d'Ivoire"
                  }
                }
              },
              {
                "_type": "MATCH",
                "id": 78198,
                "dateTime": "2025-07-19 19:00:00",
                "lastUpdateDateTime": "2025-07-21 12:27:06",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 362,
                  "name": "Stade Municipal de Berkane"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 23251,
                    "side": "Home",
                    "team": "Algeria",
                    "coach": {
                      "_type": "COACH",
                      "id": 7310,
                      "name": "Farid benstiti",
                      "dob": null,
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 4,
                        "name": "Algeria"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 23252,
                    "side": "Away",
                    "team": "Ghana",
                    "coach": {
                      "_type": "COACH",
                      "id": 7323,
                      "name": "Lars Kim Björkegren",
                      "dob": "1981-12-18",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 179,
                        "name": "Sweden"
                      }
                    }
                  }
                },
                "score": {
                  "home": 0,
                  "away": 0
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 2726,
                  "name": "UMUTONI ALINE",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 153,
                    "name": "Rwanda"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 7073,
                  "name": "Juuso Mantere",
                  "dob": null,
                  "gender": "MALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 161,
                    "name": "Senegal"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 7072,
                  "name": "Mika Lamppu",
                  "dob": null,
                  "gender": "MALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 161,
                    "name": "Senegal"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 8452,
                  "name": "Robin Kuloaro",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 161,
                    "name": "Senegal"
                  }
                }
              },
              {
                "_type": "MATCH",
                "id": 78199,
                "dateTime": "2025-07-19 22:00:00",
                "lastUpdateDateTime": "2025-07-21 14:10:27",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 2271,
                  "name": "Stade d'Honneur d'Oujda"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 2140,
                    "side": "Home",
                    "team": "South Africa",
                    "coach": {
                      "_type": "COACH",
                      "id": 2878,
                      "name": "Desiree Ellis",
                      "dob": "1963-03-14",
                      "gender": "FEMALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 171,
                        "name": "South Africa"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 23247,
                    "side": "Away",
                    "team": "Senegal",
                    "coach": {
                      "_type": "COACH",
                      "id": 7318,
                      "name": "Mame Moussa Cissé",
                      "dob": null,
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 161,
                        "name": "Senegal"
                      }
                    }
                  }
                },
                "score": {
                  "home": 0,
                  "away": 0
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 11079,
                  "name": "Shahenda Saad Elmaghrabi",
                  "dob": "1989-12-12",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 57,
                    "name": "Egypt"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 1435,
                  "name": "Yara Atef",
                  "dob": "1993-01-01",
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 57,
                    "name": "Egypt"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 2723,
                  "name": "Asma Ouahab",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 4,
                    "name": "Algeria"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 6244,
                  "name": "Ghada Mehat",
                  "dob": "1995-05-01",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 4,
                    "name": "Algeria"
                  }
                }
              }
            ]
          }
        ]
      },
      {
        "_type": "STAGE",
        "id": 2333,
        "stage": "Semi Final",
        "order": 3,
        "stageType": "KNOCKOUT_STAGE",
        "nature": "KNOCKOUT",
        "rounds": 1,
        "format": "SINGLE_LEG",
        "groups": [
          {
            "_type": "GROUP",
            "id": 3208,
            "group": "Semi Final",
            "teams": [
              {
                "_type": "TEAM",
                "id": 2118,
                "team": "Nigeria",
                "matches": 1,
                "points": null,
                "goals_scored": null,
                "goals_conceded": null,
                "goals_difference": null,
                "won": 1,
                "draw": null,
                "lost": 0,
                "goals_scored_home": null,
                "goals_conceded_home": null,
                "goals_difference_home": null,
                "goals_scored_away": null,
                "goals_conceded_away": null,
                "goals_difference_away": null,
                "lastupdate": "2026-07-21 03:03:39"
              },
              {
                "_type": "TEAM",
                "id": 2140,
                "team": "South Africa",
                "matches": 1,
                "points": null,
                "goals_scored": null,
                "goals_conceded": null,
                "goals_difference": null,
                "won": 0,
                "draw": null,
                "lost": 1,
                "goals_scored_home": null,
                "goals_conceded_home": null,
                "goals_difference_home": null,
                "goals_scored_away": null,
                "goals_conceded_away": null,
                "goals_difference_away": null,
                "lastupdate": "2026-07-21 03:03:39"
              },
              {
                "_type": "TEAM",
                "id": 2145,
                "team": "Morocco",
                "matches": 1,
                "points": null,
                "goals_scored": null,
                "goals_conceded": null,
                "goals_difference": null,
                "won": 0,
                "draw": null,
                "lost": 1,
                "goals_scored_home": null,
                "goals_conceded_home": null,
                "goals_difference_home": null,
                "goals_scored_away": null,
                "goals_conceded_away": null,
                "goals_difference_away": null,
                "lastupdate": "2026-07-21 03:03:39"
              },
              {
                "_type": "TEAM",
                "id": 23252,
                "team": "Ghana",
                "matches": 1,
                "points": null,
                "goals_scored": null,
                "goals_conceded": null,
                "goals_difference": null,
                "won": 1,
                "draw": null,
                "lost": 0,
                "goals_scored_home": null,
                "goals_conceded_home": null,
                "goals_difference_home": null,
                "goals_scored_away": null,
                "goals_conceded_away": null,
                "goals_difference_away": null,
                "lastupdate": "2026-07-21 03:03:39"
              }
            ],
            "matches": [
              {
                "_type": "MATCH",
                "id": 79278,
                "dateTime": "2025-07-22 19:00:00",
                "lastUpdateDateTime": "2025-07-24 02:04:51",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 53,
                  "name": "Prince Moulay Abdellah Stadium"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 2145,
                    "side": "Home",
                    "team": "Morocco",
                    "coach": {
                      "_type": "COACH",
                      "id": 2870,
                      "name": "Jorge Vilda Rodríguez",
                      "dob": "1981-07-07",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 174,
                        "name": "Spain"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 23252,
                    "side": "Away",
                    "team": "Ghana",
                    "coach": {
                      "_type": "COACH",
                      "id": 7323,
                      "name": "Lars Kim Björkegren",
                      "dob": "1981-12-18",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 179,
                        "name": "Sweden"
                      }
                    }
                  }
                },
                "score": {
                  "home": 1,
                  "away": 1
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 2404,
                  "name": "Suavis Iratunga",
                  "dob": "1987-12-30",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 31,
                    "name": "Burundi"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 1736,
                  "name": "Atezambong Carine",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 33,
                    "name": "Cameroon"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 4672,
                  "name": "Fides Bangurambona",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 31,
                    "name": "Burundi"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 6536,
                  "name": "Aline Marie Noelle  Etong",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 33,
                    "name": "Cameroon"
                  }
                }
              },
              {
                "_type": "MATCH",
                "id": 79280,
                "dateTime": "2025-07-22 19:00:00",
                "lastUpdateDateTime": "2025-07-24 02:42:03",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 1230,
                  "name": "Stade Larbi Zaouli"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 2118,
                    "side": "Home",
                    "team": "Nigeria",
                    "coach": {
                      "_type": "COACH",
                      "id": 2866,
                      "name": "Randy Marlon Waldrum",
                      "dob": "1956-09-25",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 209,
                        "name": "United States"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 2140,
                    "side": "Away",
                    "team": "South Africa",
                    "coach": {
                      "_type": "COACH",
                      "id": 2878,
                      "name": "Desiree Ellis",
                      "dob": "1963-03-14",
                      "gender": "FEMALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 171,
                        "name": "South Africa"
                      }
                    }
                  }
                },
                "score": {
                  "home": 2,
                  "away": 1
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 4571,
                  "name": "Shamirah Nabadda",
                  "dob": "1991-09-26",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 194,
                    "name": "Uganda"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 1847,
                  "name": "Fanta Idrissa Kone",
                  "dob": "1995-05-05",
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 116,
                    "name": "Mali"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 1774,
                  "name": "Mariem Chedad",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 119,
                    "name": "Mauritania"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 7135,
                  "name": "Dorsaf Ganouati",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 190,
                    "name": "Tunisia"
                  }
                }
              }
            ]
          }
        ]
      },
      {
        "_type": "STAGE",
        "id": 2348,
        "stage": "3rd Place",
        "order": 4,
        "stageType": "KNOCKOUT_STAGE",
        "nature": "KNOCKOUT",
        "rounds": 1,
        "format": "SINGLE_LEG",
        "groups": [
          {
            "_type": "GROUP",
            "id": 3223,
            "group": "Main",
            "teams": [
              {
                "_type": "TEAM",
                "id": 2140,
                "team": "South Africa",
                "matches": 1,
                "points": null,
                "goals_scored": null,
                "goals_conceded": null,
                "goals_difference": null,
                "won": 1,
                "draw": null,
                "lost": 0,
                "goals_scored_home": null,
                "goals_conceded_home": null,
                "goals_difference_home": null,
                "goals_scored_away": null,
                "goals_conceded_away": null,
                "goals_difference_away": null,
                "lastupdate": "2026-07-21 03:03:39"
              },
              {
                "_type": "TEAM",
                "id": 23252,
                "team": "Ghana",
                "matches": 1,
                "points": null,
                "goals_scored": null,
                "goals_conceded": null,
                "goals_difference": null,
                "won": 0,
                "draw": null,
                "lost": 1,
                "goals_scored_home": null,
                "goals_conceded_home": null,
                "goals_difference_home": null,
                "goals_scored_away": null,
                "goals_conceded_away": null,
                "goals_difference_away": null,
                "lastupdate": "2026-07-21 03:03:39"
              }
            ],
            "matches": [
              {
                "_type": "MATCH",
                "id": 79355,
                "dateTime": "2025-07-25 22:00:00",
                "lastUpdateDateTime": "2025-07-27 20:40:25",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 1230,
                  "name": "Stade Larbi Zaouli"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 23252,
                    "side": "Home",
                    "team": "Ghana",
                    "coach": {
                      "_type": "COACH",
                      "id": 7323,
                      "name": "Lars Kim Björkegren",
                      "dob": "1981-12-18",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 179,
                        "name": "Sweden"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 2140,
                    "side": "Away",
                    "team": "South Africa",
                    "coach": {
                      "_type": "COACH",
                      "id": 2878,
                      "name": "Desiree Ellis",
                      "dob": "1963-03-14",
                      "gender": "FEMALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 171,
                        "name": "South Africa"
                      }
                    }
                  }
                },
                "score": {
                  "home": 1,
                  "away": 1
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 11079,
                  "name": "Shahenda Saad Elmaghrabi",
                  "dob": "1989-12-12",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 57,
                    "name": "Egypt"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 1435,
                  "name": "Yara Atef",
                  "dob": "1993-01-01",
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 57,
                    "name": "Egypt"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 1711,
                  "name": "Afine Houda",
                  "dob": "1983-10-04",
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 190,
                    "name": "Tunisia"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 7135,
                  "name": "Dorsaf Ganouati",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 190,
                    "name": "Tunisia"
                  }
                }
              }
            ]
          }
        ]
      },
      {
        "_type": "STAGE",
        "id": 2349,
        "stage": "Final",
        "order": 5,
        "stageType": "KNOCKOUT_STAGE",
        "nature": "KNOCKOUT",
        "rounds": 1,
        "format": "SINGLE_LEG",
        "groups": [
          {
            "_type": "GROUP",
            "id": 3224,
            "group": "Main",
            "teams": [
              {
                "_type": "TEAM",
                "id": 2118,
                "team": "Nigeria",
                "matches": 1,
                "points": null,
                "goals_scored": null,
                "goals_conceded": null,
                "goals_difference": null,
                "won": 1,
                "draw": null,
                "lost": 0,
                "goals_scored_home": null,
                "goals_conceded_home": null,
                "goals_difference_home": null,
                "goals_scored_away": null,
                "goals_conceded_away": null,
                "goals_difference_away": null,
                "lastupdate": "2026-07-21 03:03:39"
              },
              {
                "_type": "TEAM",
                "id": 2145,
                "team": "Morocco",
                "matches": 1,
                "points": null,
                "goals_scored": null,
                "goals_conceded": null,
                "goals_difference": null,
                "won": 0,
                "draw": null,
                "lost": 1,
                "goals_scored_home": null,
                "goals_conceded_home": null,
                "goals_difference_home": null,
                "goals_scored_away": null,
                "goals_conceded_away": null,
                "goals_difference_away": null,
                "lastupdate": "2026-07-21 03:03:39"
              }
            ],
            "matches": [
              {
                "_type": "MATCH",
                "id": 79356,
                "dateTime": "2025-07-26 23:00:00",
                "lastUpdateDateTime": "2025-07-27 16:11:22",
                "stadium": {
                  "_type": "STADIUM",
                  "id": 4058,
                  "name": "Rabat Olympic Stadium"
                },
                "teams": {
                  "home": {
                    "_type": "TEAM",
                    "id": 2145,
                    "side": "Home",
                    "team": "Morocco",
                    "coach": {
                      "_type": "COACH",
                      "id": 2870,
                      "name": "Jorge Vilda Rodríguez",
                      "dob": "1981-07-07",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 174,
                        "name": "Spain"
                      }
                    }
                  },
                  "away": {
                    "_type": "TEAM",
                    "id": 2118,
                    "side": "Away",
                    "team": "Nigeria",
                    "coach": {
                      "_type": "COACH",
                      "id": 7315,
                      "name": "Justin Pwanidi Madugu",
                      "dob": "1964-01-19",
                      "gender": "MALE",
                      "nationality": {
                        "_type": "NATIONALITY",
                        "id": 136,
                        "name": "Nigeria"
                      }
                    }
                  }
                },
                "score": {
                  "home": 2,
                  "away": 3
                },
                "referee": {
                  "_type": "REFEREE",
                  "id": 11085,
                  "name": "Antsino Twanyanyukwa",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 129,
                    "name": "Namibia"
                  }
                },
                "assistant1": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 5257,
                  "name": "Alice Umutesi",
                  "dob": null,
                  "gender": "MALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 42,
                    "name": "Democratic Republic of the Congo"
                  }
                },
                "assistant2": {
                  "_type": "ASSISTANT RFFEREE",
                  "id": 5568,
                  "name": "Tabara Mbodji",
                  "dob": null,
                  "gender": "FEMALE",
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 161,
                    "name": "Senegal"
                  }
                },
                "fourthOfficial": {
                  "_type": "REFEREE",
                  "id": 11081,
                  "name": "Josephine Wanjiku",
                  "dob": null,
                  "nationality": {
                    "_type": "NATIONALITY",
                    "id": 94,
                    "name": "Kenya"
                  }
                }
              }
            ]
          }
        ]
      }
    ]
  }
}

Response Fields

Response Envelope

FieldTypeDescription
resultbooleanIndicates whether the request completed successfully.
titlestringShort response status title.
messagestringHuman-readable result summary, including the number of stages returned.
objectobjectThe requested season and its complete structure.

Season Object

FieldTypeDescription
object._typestringObject discriminator. The value is SEASON.
object.idintegerUnique season identifier.
object.tournamentobjectParent tournament summary.
object.tournament.idintegerUnique tournament identifier.
object.tournament.namestringTournament name.
object.seasonstringSeason name.
object.stagesarray(object)Stages belonging to the season, ordered by order.

Stage Object

FieldTypeDescription
object.stages[]._typestringObject discriminator. The value is STAGE.
object.stages[].idintegerUnique stage identifier.
object.stages[].stagestringDisplay name of the stage, such as Group Stage, Quarter-finals, or Final.
object.stages[].orderintegerStage sequence within the season. Lower numbers occur first.
object.stages[].stageTypestringMachine-readable stage category. Values in this response are GROUP_STAGE and KNOCKOUT_STAGE.
object.stages[].naturestringCompetition behavior for the stage. Values in this response are LEAGUE and KNOCKOUT.
object.stages[].roundsintegerNumber of rounds or legs configured for the stage. This is a configuration count, not the number of fixtures.
object.stages[].formatstringMachine-readable format. Values in this response are SINGLE_ROUND_ROBIN and SINGLE_LEG.
object.stages[].groupsarray(object)Groups or structural match containers within the stage.

Group Object

FieldTypeDescription
object.stages[].groups[]._typestringObject discriminator. The value is GROUP.
object.stages[].groups[].idintegerUnique group identifier.
object.stages[].groups[].groupstringGroup or bracket-container name. Knockout stages may use names such as Quarter-finals or Main.
object.stages[].groups[].teamsarray(object)Teams in the group. Returned only when include_teams=1.
object.stages[].groups[].matchesarray(object)Matches in the group. Returned only when include_matches=1.

Group Team Object

FieldTypeDescription
object.stages[].groups[].teams[]._typestringObject discriminator. The value is TEAM.
object.stages[].groups[].teams[].idintegerUnique team identifier.
object.stages[].groups[].teams[].teamstringTeam name.
object.stages[].groups[].teams[].matchesintegerMatches played by the team in this group or stage.
object.stages[].groups[].teams[].pointsintegernullPoints earned. May be null for knockout stages.
object.stages[].groups[].teams[].goals_scoredintegernullTotal goals scored. May be null when the statistic is not applicable to the stage.
object.stages[].groups[].teams[].goals_concededintegernullTotal goals conceded. May be null when not applicable.
object.stages[].groups[].teams[].goals_differenceintegernullTotal goals scored minus goals conceded. May be null when not applicable.
object.stages[].groups[].teams[].wonintegernullMatches won.
object.stages[].groups[].teams[].drawintegernullMatches drawn. May be null for knockout stages.
object.stages[].groups[].teams[].lostintegernullMatches lost.
object.stages[].groups[].teams[].goals_scored_homeintegernullGoals scored when designated as the home team.
object.stages[].groups[].teams[].goals_conceded_homeintegernullGoals conceded when designated as the home team.
object.stages[].groups[].teams[].goals_difference_homeintegernullHome goals scored minus home goals conceded.
object.stages[].groups[].teams[].goals_scored_awayintegernullGoals scored when designated as the away team.
object.stages[].groups[].teams[].goals_conceded_awayintegernullGoals conceded when designated as the away team.
object.stages[].groups[].teams[].goals_difference_awayintegernullAway goals scored minus away goals conceded.
object.stages[].groups[].teams[].lastupdatestringDate and time when the team-stage record was last updated, in YYYY-MM-DD HH:mm:ss format.

Match Object

FieldTypeDescription
object.stages[].groups[].matches[]._typestringObject discriminator. The value is MATCH.
object.stages[].groups[].matches[].idintegerUnique match identifier.
object.stages[].groups[].matches[].dateTimestringnullScheduled match date and time in YYYY-MM-DD HH:mm:ss format.
object.stages[].groups[].matches[].lastUpdateDateTimestringnullDate and time when the match record was last updated.
object.stages[].groups[].matches[].stadiumobjectnullStadium assigned to the match.
object.stages[].groups[].matches[].teamsobjectHome and away participants.
object.stages[].groups[].matches[].scoreobjectCurrent or final home and away score.
object.stages[].groups[].matches[].refereeobjectnullMain referee assigned to the match.
object.stages[].groups[].matches[].assistant1objectnullFirst assistant referee.
object.stages[].groups[].matches[].assistant2objectnullSecond assistant referee.
object.stages[].groups[].matches[].fourthOfficialobjectnullFourth official assigned to the match.

Stadium and Score Objects

FieldTypeDescription
stadium._typestringObject discriminator. The value is STADIUM.
stadium.idintegerUnique stadium identifier.
stadium.namestringStadium name.
score.homeintegernullCurrent or final home-team score. May be null before a score is available.
score.awayintegernullCurrent or final away-team score. May be null before a score is available.

Match Team and Coach Objects

The paths below appear under both teams.home and teams.away.
FieldTypeDescription
`teams.[homeaway]._type`stringObject discriminator. The value is TEAM.
`teams.[homeaway].id`integerUnique team identifier.
`teams.[homeaway].side`stringMatch side. The value is Home or Away.
`teams.[homeaway].team`stringTeam name.
`teams.[homeaway].coach`objectnullCoach assigned to the team for the match.
`teams.[homeaway].coach._type`stringObject discriminator. The value is COACH.
`teams.[homeaway].coach.id`integerUnique coach identifier.
`teams.[homeaway].coach.name`stringCoach name.
`teams.[homeaway].coach.dob`stringnullCoach date of birth in YYYY-MM-DD format.
`teams.[homeaway].coach.gender`stringnullCoach gender when available.
`teams.[homeaway].coach.nationality`objectnullCoach nationality when available.

Match Official Objects

The same general structure is used by referee, assistant1, assistant2, and fourthOfficial.
FieldTypeDescription
official._typestringObject discriminator, such as REFEREE. Assistant-referee records currently return the literal value ASSISTANT RFFEREE.
official.idintegerUnique official identifier.
official.namestringOfficial’s full name.
official.dobstringnullDate of birth in YYYY-MM-DD format.
official.genderstringnullGender when returned. This field may be absent for referee and fourth-official objects.
official.nationalityobjectnullOfficial’s nationality when available.

Nationality Object

Nationality objects can appear under coaches and match officials.
FieldTypeDescription
nationality._typestringObject discriminator. The value is NATIONALITY.
nationality.idintegerUnique nationality identifier.
nationality.namestringNationality name.
The teams and matches arrays are conditional expansions. Clients should not treat an omitted array as an empty group. Check the corresponding request parameter before interpreting its absence.
Fields that are not applicable or not yet available can be null. In particular, league-table statistics are commonly null in knockout stages, and match assignments can be incomplete before a fixture is finalized.

Error Response

If season_id is missing, the API returns HTTP 400 Bad Request.
{
  "result": false,
  "title": "Bad Request",
  "message": "Season id not sent."
}