Loading...
- Game events API
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 game event status here or easily check game event status directly from your app using our API.
gep_internal
Info Updates
key | Category | Values | Notes | Since GEP Ver. |
---|---|---|---|---|
gep_internal | gep_internal | Local + Public version number | See notes | 143.0 |
gep_internal note
Data Example:
{"info":{"gep_internal":{"version_info":"{"local_version":"157.0.1","public_version":"157.0.1","is_updated":true}"}},"feature":"gep_internal"}
game_info
Info Updates
key | Category | Values | Notes | Since GEP Ver. |
---|---|---|---|---|
username | game_info | Name of local player. | See notes | 156.0 |
username note
Data Example:
{"info":{"game_info":{"username":"dsa_gfdg"},"feature":"game_info"}
match_info
Info Updates
key | Category | Values | Notes | Since GEP Ver. |
---|---|---|---|---|
inventory | match_info | Type and amount of items on the local player. | See notes | 156.0 |
highlighted | match_info | Currently viewed item. | See notes | 157.0 |
inventory note
Data Example:
{
"category": "game_info",
"key": "inventory",
"value": {"Slots":8},"PremiumCredits":50,"PremiumCreditsFree":50,"PveBonusLoadoutBin":{"Slots":0},"PvpBonusLoadoutBin":{"Slots":0},
...
{"ItemCount":1,"ItemType":"Lotus/Types/Recipes/Components/VorBoltRemoverFakeItem"}],
"valueLength": 16212
}
highlighted note
Data Example:
{"feature": "match_info", "category": "match_info", "key": "highlighted", "data": "{\"name\":\"/Lotus/StoreItems/Types/Game/Projections/T1VoidProjectionWispPrimeABronze\",\"riven_details\":[]}"}
Loading...