Vai al contenuto
GET /v1/meta

Usage notes

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/minecraft-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}