Skip to main content
Loading...

Please read the overwolf.games.events documentation page to learn how to use Overwolf game events.

Sample Apps

Available Features

Game events status

It's highly recommended to communicate errors and warnings to your app users. Check current game event status here or easily check game event status from your app using our API.

gep_internal

Info Updates

keyCategoryValuesNotesSince GEP Ver.
gep_internalgep_internalLocal + Public version numberSee notes287.0

gep_internal note

Data Example:

{"feature":"gep_internal","category":"gep_internal","key":"version_info","value":"{\"local_version\":\"287.0.1\",\"public_version\":\"287.0.1\",\"is_updated\":true}"}

game_info

Info Updates

keyCategoryValuesNotesSince GEP Ver.
scenegame_infoThe name of the current scene.See notes287.0
player_namegame_infoThe local player name and taglineSee notes287.0

scene note

List of possible values:

  • lobby

  • inGame

  • champion_select

  • stage_select

Data Example:

{"feature":"game_info","category":"game_info","key":"scene","value":"lobby"}

player_name note

Data Example:

{"feature":"game_info","category":"game_info","key":"player_name","value":"Overwolf#1234"}

match_info

Info Updates

keyCategoryValuesNotesSince GEP Ver.
match_idmatch_infoThe match ID of the current match.See notes287.0
player_sidematch_infoThe side of the local player.See notes291.0
game_modematch_infoThe current selected game mode.See notes291.0
mapmatch_infoThe current selected map.See notes291.0
champ_selectmatch_infoThe current selected champions.See notes291.0
selected_fusematch_infoThe current selected fuse.See notes291.0
scorematch_infoThe score of the current matchSee notes291.0

match_id note

Data Example:

{"feature":"match_info","category":"match_info","key":"match_id","value":"323ea434-265d-4b22-86e2-5121de2953ce"}

player_side note

Possible values:

  • left
  • right

Data Example:

{"feature":"match_info","category":"match_info","key":"player_side","value":"right"}

game_mode note

Data Example:

{"feature":"match_info","category":"match_info","key":"game_mode","value":"ranked"}

map note

Data Example:

{"feature":"match_info","category":"match_info","key":"map","value":"Bilgewater_Tavern"}

champ_select note

Data Example:

{"feature":"match_info","category":"match_info","key":"champ_select","value":"[{\"name\":\"Ekko\",\"side\":\"right\"},{\"name\":\"Darius\",\"side\":\"right\"}]"}

selected_fuse note

Data Example:

{"feature":"match_info","category":"match_info","key":"selected_fuse","value":"double_down"}

score note

Data Example:

{"feature":"match_info","category":"match_info","key":"score","value":"{\"local\":1,\"enemy\":0}"}

Events

EventEvent DataFired WhenNotesSince GEP Ver.
match_startnullIn the beginning of each matchSee notes287.0
match_endnullAt the end of each matchSee notes287.0
round_startnullIn the beginning of each roundSee notes287.0
round_endnullAt the end of each roundSee notes287.0
match_outcomenullAt the end of the current matchSee notes287.0

match_start note

Data Example:

{"events":[{"name":"match_start","data":""}]}

match_end note

Data Example:

{"events":[{"name":"match_end","data":""}]}

round_start note

Data Example:

{"events":[{"name":"round_start","data":""}]}

round_end note

Data Example:

{"events":[{"name":"round_end","data":""}]}

match_outcome note

Possible values:

  • victory
  • defeat

Data Example:

{"events":[{"name":"match_outcome","data":"victory"}]}