Skip to content
GET /v1/profile

A player's public social graph

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/habbo-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "id": "hhus-fcfff510c4c2cc81790d725126111dbe",
        "name": "Puhekupla",
        "level": 9,
        "motto": ":)",
        "rooms": [
            {
                "id": 30158447,
                "name": "asdf",
                "tags": [],
                "rating": 14,
                "description": null,
                "max_visitors": 25
            },
            {
                "id": 74935991,
                "name": "[]jbhn",
                "tags": [],
                "rating": 1,
                "description": "",
                "max_visitors": 10
            }
        ],
        "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",
        "groups": [],
        "online": false,
        "source": "Habbo",
        "star_gems": 0,
        "room_count": 2,
        "badge_count": 36,
        "group_count": 0,
        "last_online": "2017-11-08T23:22:09.000+0000",
        "friend_count": 0,
        "member_since": "2009-08-21T23:22:47.000+0000",
        "level_percent": 4,
        "profile_visible": true,
        "total_experience": 141
    },
    "meta": {
        "timestamp": "2026-06-09T11:38:27.693Z",
        "request_id": "16d5b33c-40b7-427c-8594-233ac32f17c1"
    },
    "status": "ok",
    "message": "Profile retrieved successfully",
    "success": true
}