### Realm Defense Daily Tournament API Documentation Source: https://github.com/rmanguinho/clean-ranking-loader/blob/master/requirements/last-ranking-feature.md This API provides daily tournament results for the Realm Defense game. It specifies the availability of results based on UTC time and a period of unavailability for suspense. ```APIDOC RealmDefenseTournamentAPI: description: API for retrieving daily tournament results in Realm Defense. endpoints: /tournament/results: GET: description: Retrieves the daily tournament results. availability: - From 00:00 to 21:59 UTC: Returns results. - From 22:00 to 23:59 UTC: Returns no data (suspense period). responses: 200 OK: description: Successful retrieval of tournament results. content: application/json: schema: oneOf: - $ref: '#/components/schemas/TournamentSummary' - $ref: '#/components/schemas/TournamentDetail' 404 Not Found: description: No tournament data available for the current period. components: schemas: TournamentSummary: type: object properties: player_name: type: string description: Name of the player. hero_names: type: array items: type: string description: Names of the heroes used by the player. final_score: type: integer description: Player's final score in the tournament. TournamentDetail: type: object properties: player_name: type: string description: Name of the player. player_nationality: type: string description: Nationality of the player. hero_details: type: array items: type: object properties: hero_name: type: string description: Name of the hero. hero_level: type: integer description: Level of the hero. final_score: type: integer description: Player's final score in the tournament. score_timestamp: type: string format: date-time description: Timestamp when the player achieved the score. ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.