/v1/worldbosses
World boss list
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/gw2-api/v1/worldbosses" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gw2-api/v1/worldbosses", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gw2-api/v1/worldbosses");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/gw2-api/v1/worldbosses",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 15,
"world_bosses": [
"admiral_taidha_covington",
"claw_of_jormag",
"drakkar",
"fire_elemental",
"great_jungle_wurm",
"inquest_golem_mark_ii",
"karka_queen",
"megadestroyer",
"mists_and_monsters_titans",
"modniir_ulgoth",
"shadow_behemoth",
"svanir_shaman_chief",
"tequatl_the_sunless",
"the_shatterer",
"triple_trouble_wurm"
]
},
"meta": {
"timestamp": "2026-06-01T00:03:42.947Z",
"request_id": "f2ee21f4-f428-46e0-b92a-eefcc9835b0d"
},
"status": "ok",
"message": "World bosses retrieved",
"success": true
}