/v1/skin
Skin & render URLs
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}