Naar de inhoud
GET /v1/user

A player's public profile

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/habbo-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/habbo-api/v1/user" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/habbo-api/v1/user", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/habbo-api/v1/user");
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/user",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "id": "hhus-fcfff510c4c2cc81790d725126111dbe",
        "name": "Puhekupla",
        "level": 9,
        "motto": ":)",
        "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",
        "online": false,
        "source": "Habbo",
        "star_gems": 0,
        "last_online": "2017-11-08T23:22:09.000+0000",
        "member_since": "2009-08-21T23:22:47.000+0000",
        "level_percent": 4,
        "profile_visible": true,
        "selected_badges": [
            {
                "code": "UK190",
                "name": "Puhekupla Event winner",
                "description": "Champion chocolate snatcher"
            },
            {
                "code": "COW01",
                "name": "Cowboyween",
                "description": "Trick or Treat?"
            }
        ],
        "total_experience": 141
    },
    "meta": {
        "timestamp": "2026-06-09T11:38:27.923Z",
        "request_id": "94126a02-cbda-496d-811f-58c3c6b0c722"
    },
    "status": "ok",
    "message": "User retrieved successfully",
    "success": true
}