/v1/skin
Skin & render URLs
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/minecraft-api/v1/skin" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/minecraft-api/v1/skin", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/minecraft-api/v1/skin");
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/skin",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"uuid": "069a79f4-44e9-4726-a5be-fca90e38aaf5",
"model": "classic",
"renders": {
"body": "https://mc-heads.net/body/069a79f444e94726a5befca90e38aaf5",
"head": "https://mc-heads.net/head/069a79f444e94726a5befca90e38aaf5",
"skin": "https://mc-heads.net/skin/069a79f444e94726a5befca90e38aaf5",
"front": "https://mc-heads.net/body/069a79f444e94726a5befca90e38aaf5",
"avatar": "https://mc-heads.net/avatar/069a79f444e94726a5befca90e38aaf5",
"isometric_head": "https://mc-heads.net/head/069a79f444e94726a5befca90e38aaf5"
},
"username": "Notch",
"cape_texture": null,
"skin_texture": "https://textures.minecraft.net/texture/292009a4925b58f02c77dadc3ecef07ea4c7472f64e0fdc32ce5522489362680"
},
"meta": {
"timestamp": "2026-06-01T00:03:43.984Z",
"request_id": "41cf58f8-b629-448d-a482-c894b8fcefc0"
},
"status": "ok",
"message": "Skin retrieved",
"success": true
}