Skip to content
GET /v1/player

Search players

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

Example response

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

{
    "data": {
        "count": 10,
        "query": "Robinhood",
        "players": [
            {
                "id": "nU1Y8JrkRrW8lCLMhPZFpQ",
                "name": "RobinHood",
                "guild": null,
                "alliance": null,
                "gvg_kills": null,
                "kill_fame": 0,
                "death_fame": 0,
                "fame_ratio": 0,
                "total_kills": null
            },
            {
                "id": "2rR2UOYvSYyPy5WQCnBHuQ",
                "name": "RobinHood0",
                "guild": null,
                "alliance": null,
                "gvg_kills": null,
                "kill_fame": 0,
                "death_fame": 0,
                "fame_ratio": 0,
                "total_kills": null
            },
            {
                "id": "M1Rd9IzcSCi2NDBYwg7hcw",
                "name": "RobinHood0",
                "guild": null,
                "alliance": null,
                "gvg_kills": null,
                "kill_fame": 0,
                "death_fame": 0,
                "fame_ratio": 0,
                "total_kills": null
            },
            {
                "id": "l00n3T9vQqKTxm64Ik_J2Q",
                "name": "robinhood00",
                "guild": null,
                "alliance": null,
                "gvg_kills": null,
                "kill_fame": 0,
                "death_fame": 21720,
                "fame_ratio": 0,
                "total_kills": null
            },
            {
                "id": "G-ac7uBdShWA70K7ix18Sw",
                "name": "RobinHood0007",
                "guild": null,
                "alliance": null,
                "gvg_kills": null,
                "kill_fame": 0,
                "death_fame": 0,
                "fame_ratio": 0,
                "total_kills": null
            },
            {
                "id": "Gh4RZasRRC-VNvdXUDS7VQ",
                "name": "RobinHood0007",
                "guild": null,
                "alliance": null,
                "gvg_kills": null,
                "kill_fame": 0,
                "death_fame": 0,
                "fame_ratio": 0,
                "total_kills": null
            },
            {
                "id": "Cp1KeXtCT_aRTLXTztlOlw",
                "name": "RobinHood0007",
                "guild": null,
                "alliance": null,
                "gvg_kills": null,
                "kill_fame": 0,
                "death_fame": 0,
                "fame_ratio": 0,
                "total_kills": null
            },
            {
                "id": "gM3S4SKvTO6FT0fHA41U9Q",
                "name": "RobinHood0007",
                "guild": null,
                "alliance": null,
                "gvg_kills": null,
                "kill_fame": 0,
                "death_fame": 0,
                "fame_ratio": 0,
                "total_kills": null
            },
            {
                "id": "k2k1gypDSMyXwXrMugv2lg",
                "name": "RobinHood0007",
 
…