/v1/player
Player profile
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}