Raider
World of Warcraft Mythic+ and raid rankings for characters & guilds
Pull WoW character and guild profiles, Mythic+ scores, raid progress, and the current season's affix rotation. Public data is available without a key over plain JSON. The underlying game data is Blizzard's.
GET https://raider.io/api/v1/mythic-plus/affixes?region=us&locale=en
{
"region": "us",
"title": "Xal'atath's Bargain: Devour, Fortified, Tyrannical, Xal'atath's Guile",
"affix_details": [
{
"id": 160,
"name": "Xal'atath's Bargain: Devour",
"description": "While in combat, Xal'atath tears open rifts that devour the essence of players.",
"wowhead_url": "https://wowhead.com/affix=160"
}
]
}curl "https://raider.io/api/v1/mythic-plus/affixes?region=us&locale=en"const res = await fetch("https://raider.io/api/v1/mythic-plus/affixes?region=us&locale=en");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://raider.io/api/v1/mythic-plus/affixes?region=us&locale=en")
print(res.json())/mythic-plus/affixes?region=us&locale=enPROBEDWorld of Warcraft Mythic+ and raid rankings for characters & guilds
/mythic-plusMythic Plus — documented GET route.
/mythic-plus/1Mythic Plus details by ID (example: 1).
/mythic-plus?limit=10Mythic Plus — documented GET route.
/mythic-plus/search?q=testSearch by query parameters.
/mythic-plus/affixes?limit=5Affixes — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Raider: common questions
Is Raider free to use?
Yes — Raider is a free games API. Free tier: Free, no API key for public data. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Raider need an API key?
No — Raider needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Raider from the browser?
Yes — Raider returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Raider up right now?
As of our last scheduled check, Raider is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.