/v1/meta
Usage notes
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/wynncraft-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/wynncraft-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/wynncraft-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/wynncraft-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Wynncraft (the Minecraft MMORPG). /v1/player?username=Salted = a player's rank, playtime, guild and global stats (total level, mobs killed, chests, quests, wars, PvP); /v1/guild?name=Avicia (or prefix=AVO) = a guild's level, members, territories & wars; /v1/leaderboard?type=totalGlobalLevel = a ranked leaderboard (also guildLevel, combatGlobalLevel, warsCompletion, mining/fishing/woodcuttingLevel, …); /v1/item?query=Idol = search the item database (type, rarity, level & class requirement); /v1/classes = the five classes; /v1/abilities?class=archer = a class's ability tree. Official Wynncraft data.",
"source": "Wynncraft official API (api.wynncraft.com)",
"endpoints": [
"/v1/player",
"/v1/guild",
"/v1/leaderboard",
"/v1/item",
"/v1/classes",
"/v1/abilities",
"/v1/meta"
]
},
"meta": {
"timestamp": "2026-06-01T00:03:30.221Z",
"request_id": "a8097eec-0763-40e1-8f00-2eeb88240746"
},
"status": "ok",
"message": "Meta retrieved",
"success": true
}