2.7.0

Summary: This patch releases brackets, standings, and add fields to live feed & REST API.

Brackets

  • Add a brackets API call to show tournament brackets

Standings

  • Add a standings API call to show current standings

CS:GO basic live feed

  • Adding a bomb_planted boolean field, specifying whether the bomb has been planted or not.

LoL pro live feed

  • Adding a type field in players items to distinguish items from trinkets.

Overwatch Post-match game details

Additional fields added to OW games

  • Adding the following fields to the heroes objects:

  • number of time the player used his ultimate per hero: ultimates (int)

  • time the player spent during the round having the hero ultimate available, in seconds: time_with_ult_up (int)

  • time spent playing the hero during the round, in seconds: time_played (int)

  • number of resurrections the player performed on an ally hero: resurrections (int)

  • number of kills the player got during the round playing the hero: kills (int)

  • number of destructions the player performed during the round playing the hero: destructions (int)

  • number of deaths the player had during the round playing the hero: deaths (int)

  • average time the player had to spend to load the hero ultimate, in seconds: avg_time_to_charge_ultimate (float)

  • Adding the following fields to the players objects:

  • number of times the player used his ultimate: ultimates (int)

  • number of times the player resurrected an ally during the round: resurrections (int)

  • number of times the player performed a destruction (ex: Torbjörn's turret): destructions (int)

Additional stats added to OW aggregated statistics, on the /ow/series/{serie_id}/players/{player_id}/stats, the /ow/tournaments/{tournament_id}/players/{player_id}/stats, the new /ow/matches/{match_id}/players/{player_id}/stats and the new /ow/games/{game_id}/players/{player_id}/stats calls, in the stats.averages object with the following fields:

  • average time the player had to spend to charge the hero ultimate, in seconds: avg_time_to_charge_ultimate (float)
  • number of the player deaths over the instance: deaths_counts (int)
    average number of deaths per 10 minutes: deaths_per_10_minutes (int)
  • number of times the player performed a destruction over the instance: destructions_count (int)
  • average number of destructions per 10 minutes: destructions_per_10_minutes (int)
  • number of kills the player got over the instance: kills_count (int)
  • average number of kills per 10 minutes: kills_per_10_minutes (int)
  • number of draw maps over the instance: map_draw (int)
  • number of lost maps over the instance: map_lost (int)
  • number of won maps over the instance: map_won (int)
  • number of times the player resurrected an ally over the instance: resurrections_count (int)
  • average number of resurrections per 10 minutes: resurrections_per_10_minutes (int)
  • number of times the player used his ultimate during the instance: ultimates_count (int)
  • average number of ultimates per 10 minutes: ultimates_per_10_minutes (int)

📖 Documentation

We're updating our reference documentation, in order to make it clearer and lighter.

We also changed our documentation engine to support Swagger/OpenApi v3 specification.