/v1/avatar
Avatar image URLs
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/habbo-api/v1/avatar" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/habbo-api/v1/avatar", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/habbo-api/v1/avatar");
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/habbo-api/v1/avatar",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"name": "Puhekupla",
"avatar": {
"full": "https://www.habbo.com/habbo-imaging/avatarimage?figure=hr-125-31.hd-180-1.ch-210-1320.lg-275-90.sh-908-68.ha-1003-66&size=l&direction=2&head_direction=2&action=std",
"small": "https://www.habbo.com/habbo-imaging/avatarimage?figure=hr-125-31.hd-180-1.ch-210-1320.lg-275-90.sh-908-68.ha-1003-66&size=s&direction=2&head_direction=2",
"headshot": "https://www.habbo.com/habbo-imaging/avatarimage?figure=hr-125-31.hd-180-1.ch-210-1320.lg-275-90.sh-908-68.ha-1003-66&size=l&headonly=1&direction=2&head_direction=3"
},
"figure": "hr-125-31.hd-180-1.ch-210-1320.lg-275-90.sh-908-68.ha-1003-66",
"source": "Habbo"
},
"meta": {
"timestamp": "2026-06-09T11:38:26.640Z",
"request_id": "61adf111-5dab-443a-b31a-ec201bb87e7f"
},
"status": "ok",
"message": "Avatar retrieved successfully",
"success": true
}