/v1/leagues
Current leagues
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/poe-api/v1/leagues" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/poe-api/v1/leagues", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/poe-api/v1/leagues");
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/poe-api/v1/leagues",
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": 16,
"realm": "pc",
"leagues": [
{
"id": "Standard",
"realm": "pc",
"rules": [],
"ends_at": null,
"starts_at": "2013-01-23T21:00:00Z",
"description": "The default game mode."
},
{
"id": "Hardcore",
"realm": "pc",
"rules": [
"Hardcore"
],
"ends_at": null,
"starts_at": "2013-01-23T21:00:00Z",
"description": "A character killed in the Hardcore league is moved to the Standard league."
},
{
"id": "Solo Self-Found",
"realm": "pc",
"rules": [
"Solo"
],
"ends_at": null,
"starts_at": "2013-01-23T21:00:00Z",
"description": "SSF Standard"
},
{
"id": "Hardcore SSF",
"realm": "pc",
"rules": [
"Hardcore",
"Solo"
],
"ends_at": null,
"starts_at": "2013-01-23T21:00:00Z",
"description": "SSF Hardcore"
},
{
"id": "Ruthless",
"realm": "pc",
"rules": [
"Ruthless"
],
"ends_at": null,
"starts_at": null,
"description": "Ruthless"
},
{
"id": "Hardcore Ruthless",
"realm": "pc",
"rules": [
"Hardcore",
"Ruthless"
],
"ends_at": null,
"starts_at": null,
"description": "Hardcore Ruthless"
},
{
"id": "SSF Ruthless",
"realm": "pc",
"rules": [
"Solo",
"Ruthless"
],
"ends_at": null,
"starts_at": null,
"description": "SSF Ruthless"
},
{
"id": "Hardcore SSF Ruthless",
"realm": "pc",
"rules": [
"Hardcore",
"Solo",
"Ruthless"
],
"ends_at": null,
"starts_at": null,
"description": "Hardcore SSF Ruthless"
},
{
"id": "Mirage",
"realm": "pc",
"rules": [],
"ends_at": null,
"starts_at": "2026-03-06T19:00:00Z",
"description": "Wish for the Wraeclast that could have been."
},
{
"id": "Hardcore Mirage",
…