Skip to content
GET /v1/guild

Search guilds

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/albion-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "count": 10,
        "query": "Money",
        "guilds": [
            {
                "id": "N6Y9p3RsQsScUf5UXlet7A",
                "name": "Money",
                "alliance": null,
                "kill_fame": null,
                "death_fame": 6458890
            },
            {
                "id": "fZkeg87iS_iGJwIGESC1lw",
                "name": "MONEY 001",
                "alliance": null,
                "kill_fame": null,
                "death_fame": 0
            },
            {
                "id": "2km-ULCKQlG2-c0W28JeZw",
                "name": "Money 004",
                "alliance": null,
                "kill_fame": null,
                "death_fame": 0
            },
            {
                "id": "HAJ4E5jlQQKt1_Y2X1N_EA",
                "name": "Money 01",
                "alliance": null,
                "kill_fame": null,
                "death_fame": 0
            },
            {
                "id": "uCfj2A3KSxKIj8_8paAvJQ",
                "name": "money 010",
                "alliance": null,
                "kill_fame": null,
                "death_fame": 0
            },
            {
                "id": "WBehNb8LTdO5u3XQJaDc5Q",
                "name": "Money 02",
                "alliance": null,
                "kill_fame": null,
                "death_fame": 0
            },
            {
                "id": "Qo8LqSxXQJiaQ2rhvG9SWw",
                "name": "Money 03",
                "alliance": null,
                "kill_fame": null,
                "death_fame": 0
            },
            {
                "id": "L9yrJzV-R8eef8nBKktHCA",
                "name": "Money 04",
                "alliance": null,
                "kill_fame": null,
                "death_fame": 0
            },
            {
                "id": "vkRygYJNQR-LM-06miwvjQ",
                "name": "Money 05",
                "alliance": null,
                "kill_fame": null,
                "death_fame": 0
            },
            {
                "id": "KLWJloSUQWSCbj5aK6YwNg",
                "name": "Money 06",
                "alliance": null,
                "kill_fame": null,
                "death_fame": 0
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-01T00:03:33.107Z",
        "request_id": "9200d3bb-2984-4262-9416-53536c832972"
    },
    "status": "ok",
    "message": "Guilds retrieved",
    "success": true
}