Overview
The Raider.io API provides detailed World of Warcraft character and guild rankings for Mythic+ dungeons and raid content without requiring any authentication. You can look up any character's Mythic+ score, best runs, and raid progression. It is great for building WoW performance dashboards or guild recruitment tools.
Beginner Tip
All requests are public and need no API key — just include the character name, realm, and region as query parameters. Use region=us, realm=your-realm-name (lowercase, hyphens for spaces), and name=CharacterName.
Available Data
The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.
Example Response
Illustrative shape only — we were not able to call this endpoint (it requires credentials or exposes no public sample URL), so the fields below show the kind of data this API returns rather than a recorded response.
{
"id": 1,
"name": "Raider",
"data": "Provides detailed character and guild rankings for Raiding and Mythic+ content in World of Warcraft",
"source": "Raider"
} Field Reference
name Character name as it appears in World of Warcraft race Character's WoW race (e.g., Human, Night Elf, Orc) class Character's WoW class (e.g., Warrior, Mage, Paladin) mythic_plus_scores_by_season Mythic+ rating scores broken down by role (all, dps, healer, tank) for the requested season mythic_plus_best_runs Array of the character's best Mythic+ dungeon runs with dungeon name, level, and score gear Character's current gear information including item level and equipped items Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://raider.io/api/v1/characters/profile?region=us&realm=illidan&name=YourCharacter&fields=mythic_plus_scores_by_season%3Acurrent";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.
Metadata Score Breakdown
Estimated from metadata — endpoint not independently tested
Metadata estimate · endpoint not independently tested
Technical Specifications
Related Tags
Similar APIs
View All →Animal Crossing: New Horizons
⭐ Beginner's PickThe Animal Crossing: New Horizons API gives you free access to in-game data including villagers, critters, fossils, art, music, and furniture.
Autochess VNG
The Autochess VNG API provides game data for the Autochess VNG mobile game including heroes, items, and races.
Barter.VG
Barter.VG aggregates data about PC games, DLC, bundles, giveaways, and trading from Steam and other platforms.
Digimon Information
⭐ Beginner's PickThe Digimon Information API provides easy access to data about Digimon creatures, including their names, levels, types, and images.
Genshin Impact
⭐ Beginner's PickThe Genshin Impact API provides detailed game data including characters, weapons, artifacts, enemies, and domains from the popular action RPG.