Μετάβαση στο περιεχόμενο
GET /v1/player

Player profile

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/minecraft-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "player": {
            "uuid": "069a79f4-44e9-4726-a5be-fca90e38aaf5",
            "renders": {
                "body": "https://mc-heads.net/body/069a79f444e94726a5befca90e38aaf5",
                "head": "https://mc-heads.net/head/069a79f444e94726a5befca90e38aaf5",
                "skin": "https://mc-heads.net/skin/069a79f444e94726a5befca90e38aaf5",
                "avatar": "https://mc-heads.net/avatar/069a79f444e94726a5befca90e38aaf5"
            },
            "cape_url": null,
            "skin_url": "https://textures.minecraft.net/texture/292009a4925b58f02c77dadc3ecef07ea4c7472f64e0fdc32ce5522489362680",
            "username": "Notch",
            "created_at": "2010-01-10",
            "skin_model": "classic",
            "custom_skin": true,
            "name_history": [
                {
                    "username": "Notch",
                    "changed_at": null
                }
            ],
            "uuid_trimmed": "069a79f444e94726a5befca90e38aaf5"
        }
    },
    "meta": {
        "timestamp": "2026-06-01T00:03:43.684Z",
        "request_id": "58757de6-2b13-4605-8a09-3b5f90db7404"
    },
    "status": "ok",
    "message": "Player retrieved",
    "success": true
}