v4
OpenAPI 3.0.02026-07-3137328230.2 KBRetrieve overall raid progress for a guild across all bosses. Returns best percent, pull count, and kill status for every encounter in the raid.
Relies on combat log data retrieved from the Raider.IO Desktop App.<br><br>Returns progress for <b>all</b> bosses in a single call — use this instead of calling boss-progress once per boss.<br><br>Identify the guild using <b>either</b> <code>guild_id</code> <b>or</b> the <code>region</code>/<code>realm</code>/<code>guild</code> combination.
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
Raider.IO guild ID. Alternative to the region/realm/guild parameters.
Raider.IO guild ID. Alternative to the region/realm/guild parameters.
Region of the guild. One of: us, eu, kr, tw
Region of the guild. One of: us, eu, kr, tw
Realm name. Accepts slug form (e.g. "altar-of-storms") or display name (e.g. "Altar of Storms")
Realm name. Accepts slug form (e.g. "altar-of-storms") or display name (e.g. "Altar of Storms")
Guild name. Not case sensitive.
Guild name. Not case sensitive.
Lockout period. One of: "current", "until_kill", "all", or an integer period ID.
Lockout period. One of: "current", "until_kill", "all", or an integer period ID.
Response
Successful
Example response
{
"guild": {
"id": 955,
"name": "Ludicrous Speed",
"faction": "horde",
"realm": {
"id": 114,
"connectedRealmId": 114,
"wowRealmId": 57,
"wowConnectedRealmId": 11,
"name": "Skullcrusher",
"slug": "skullcrusher",
"altSlug": "skullcrusher",
"locale": "en_US",
"realmType": "pve"
},
"region": {
"name": "United States & Oceania",
"short_name": "US",
"slug": "us"
},
"path": "/guilds/us/skullcrusher/Ludicrous%20Speed",
"logo": "https://cdn.raider.io/images/site/horde_icon4.png",
"color": "#ff6600"
},
"guildPrivacy": {
"raidPulls": true,
"raidPercents": true,
"raidComps": true
},
"raid": {
"id": 100,
"slug": "nerubar-palace",
"name": "Nerub-ar Palace",
"short_name": "NP"
},
"bosses": [
{
"boss": {
"slug": "the-silken-court",
"name": "The Silken Court"
},
"pullCount": 52,
"isDefeated": true
}
]
}