Showing game events on your overlay
Stream Repeater is a relay, so it doesn't watch your game directly — but you can publish game events to it. They appear on your overlay's Events widget and can drive automations (flash your lights, post to Discord, fire an alert).
Publish an event
Create an API token in Settings → API tokens (write access), then POST:
POST /api/tenants/{your-tenant-id}/events with header Authorization: Bearer <token> and body:
{ "type": "game.kill", "context": { "player": "You", "message": "Double kill!" } }
The message shows on the Events widget; the type (game.kill, game.round_win, game.objective, game.custom…) is what automation rules match on.
Where events come from
- Streamer.bot / Stream Deck / a script — fire a
game.*event on a button press. Works for any game, including Fortnite and Warzone (which don't expose live data). - Games with live data (CS2, Dota 2, League) — auto-captured by the Local Agent. Turn on Integrations → Game events (see Auto-capture game events).
- A mod chat command or a hotkey — for games without an integration.
Add an Events widget to your overlay to show them, and build a rule under Integrations → Automations to react.