Skip to content
GET /v1/player

Player profile

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "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
}