Ir al contenido
GET /v1/worldbosses

World boss list

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/gw2-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}