/v1/meta
Usage notes
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/minecraft-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/minecraft-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/minecraft-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/minecraft-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "Minecraft data. /v1/server?address=hypixel.net (&type=java|bedrock) = live server status (players online/max, version, MOTD, icon, software); /v1/player?username=Notch = full profile (UUID, skin & cape, name history, render URLs); /v1/uuid?id=Notch = resolve username↔UUID; /v1/skin?username=Notch = skin/cape textures + avatar/head/body render URLs; /v1/versions?type=release = the game's version list with release dates. Data from mcsrvstat.us and Mojang.",
"source": "mcsrvstat.us + Mojang (via api.ashcon.app) + launchermeta.mojang.com",
"endpoints": [
"/v1/server",
"/v1/player",
"/v1/uuid",
"/v1/skin",
"/v1/versions",
"/v1/meta"
]
},
"meta": {
"timestamp": "2026-06-01T00:03:44.478Z",
"request_id": "48b4d26c-7274-4e44-833c-52f92e7ede41"
},
"status": "ok",
"message": "Meta retrieved",
"success": true
}