Zum Inhalt springen
GET /v1/leagues

Current leagues

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/poe-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "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",
            
…