Zum Inhalt springen
GET /v1/guild

Guild by name/prefix

Live testen

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

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

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

API-Key holen

Code-Snippets

curl "https://api.oanor.com/wynncraft-api/v1/guild" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/wynncraft-api/v1/guild", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/wynncraft-api/v1/guild");
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/wynncraft-api/v1/guild",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

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

{
    "data": {
        "guild": {
            "name": "Avicia",
            "uuid": "00ccf9d3-6670-4cd7-a447-f7fec684129d",
            "wars": 221390,
            "level": 129,
            "online": 13,
            "prefix": "AVO",
            "created": "2018-08-01T16:40:45.322000Z",
            "xp_percent": 33,
            "banner_tier": 8,
            "territories": 52,
            "members_total": 149,
            "members_by_rank": {
                "chief": 28,
                "owner": 1,
                "captain": 59,
                "recruit": 6,
                "recruiter": 32,
                "strategist": 23
            }
        }
    },
    "meta": {
        "timestamp": "2026-06-01T00:03:29.328Z",
        "request_id": "d81926cf-9c5a-423a-ad3d-d8b99b2e0571"
    },
    "status": "ok",
    "message": "Guild retrieved",
    "success": true
}