v4
OpenAPI 3.0.02026-07-3137328230.2 KBRetrieve a Race to World First event feed (kills, best percents, new pulls) for tracked guilds. Supports real-time polling via the "after" cursor parameter.
Relies on combat log data retrieved from the Raider.IO Desktop App.<br><br><b>Polling workflow:</b><ol><li>Call <code>rwf-event/last</code> to get the starting cursor ID</li><li>Call this endpoint with that ID as <code>after</code> and your <code>guild_ids</code></li><li>On each poll, use the highest <code>id</code> from the returned events as the new <code>after</code> value</li><li>Poll every 10–30 seconds for near real-time updates</li></ol>
Query parameters
The API key from your RaiderIO App: http://raider.io/settings/apps. Apps with API keys have higher rate limits.
The API key from your RaiderIO App: http://raider.io/settings/apps. Apps with API keys have higher rate limits.
Raid slug or full name (e.g. "sporefall" or "Sporefall")
Raid slug or full name (e.g. "sporefall" or "Sporefall")
Raid difficulty. One of: mythic, heroic, normal
Raid difficulty. One of: mythic, heroic, normal
Comma-separated list of event types to include. Valid values: best_percent, new_boss, boss_kill
Comma-separated list of event types to include. Valid values: best_percent, new_boss, boss_kill
Comma-separated list of Raider.IO guild IDs to track.
Comma-separated list of Raider.IO guild IDs to track.
Border style variant for event card rendering
Border style variant for event card rendering
Cursor: only return events with an ID greater than this value. Use 0 to fetch all, or the last seen event ID for polling.
Cursor: only return events with an ID greater than this value. Use 0 to fetch all, or the last seen event ID for polling.
If set, return test/mock event data
If set, return test/mock event data
Response
Successful
Example response
{
"events": [
{
"id": 54321,
"raid": {
"id": 100,
"slug": "nerubar-palace",
"name": "Nerub-ar Palace",
"short_name": "NP"
},
"boss": {
"slug": "the-silken-court",
"name": "The Silken Court"
},
"guild": {
"guildPrivacy": {
"raidPulls": true,
"raidPercents": true,
"raidComps": true
}
}
}
]
}