Skip to content
GET /v1/meta

Usage notes

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/minecraft-api

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

Get an API key

Code snippets

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_..."}
)

Example response

A real response from this endpoint, captured by the latest 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
}