Raider API

⭐ Beginner's Pick Games & Comics / No Auth Required Beginner HTTPS
Free to Use Varies (check documentation)

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

Raider data via REST API
JSON-formatted response data
Freely accessible without authentication

Example Response

JSON 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

// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://raider.io/api";
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

400 Bad Request Missing required query parameters or incorrect parameter values
Ensure you include all required parameters: region (us/eu/tw/kr), realm (slugified), and name (case-insensitive character name)
Could not find requested character The character name, realm, or region combination does not exist or has never been indexed by Raider.io
Search for the character on raider.io website first to confirm it has a profile; the character must have logged a Mythic+ run to appear
Empty fields in response The fields parameter was not included or the character has no data for the requested field
Add the fields parameter to your request (e.g., fields=mythic_plus_scores_by_season:current) to retrieve specific data sections

Matrix Score Breakdown

🌐 Reachability 30/30
⚡ Speed 10/20
🔒 Security 15/15
🛠 Developer XP 15/20
✓ Reliability 7/15
Response Time 671ms

Fully tested on Apr 5, 2026

Technical Specifications

Auth No Auth
HTTPS REQUIRED
CORS UNKNOWN
Category Games & Comics
Difficulty Beginner
Verified: 2026-04-04

Similar APIs

View All →