Naar de inhoud
GET /v1/meta

Usage notes

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "Albion Online data (Americas/West server). /v1/price?item=T4_BAG&cities=Caerleon,Bridgewatch = current Trading Post sell/buy prices per city & quality (item ids look like T4_BAG, T8_PLATE_HELMET, add @1 for enchant); /v1/history?item=T4_BAG&city=Caerleon&scale=24 = price & volume history; /v1/gold = the gold price in silver; /v1/player?name=Robinhood = search players (kill fame, guild, kills); /v1/guild?name=Money Guild = search guilds; /v1/cities = the royal cities & Black Market. Prices in silver. Community-sourced market data from the Albion Online Data Project.",
        "source": "Albion Online Data Project (albion-online-data.com) + Albion game-info API",
        "endpoints": [
            "/v1/price",
            "/v1/history",
            "/v1/gold",
            "/v1/player",
            "/v1/guild",
            "/v1/cities",
            "/v1/meta"
        ]
    },
    "meta": {
        "timestamp": "2026-06-01T00:03:35.259Z",
        "request_id": "fba876f5-e702-4eaf-9d71-3f090a20acf4"
    },
    "status": "ok",
    "message": "Meta retrieved",
    "success": true
}