Naar de inhoud
GET /v1/leagues

Current leagues

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/poe-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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",
            
…