Zum Inhalt springen
GET /v1/user

User profile + social counts

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/roblox-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "id": 156,
        "created": "2006-03-08T17:17:52.9Z",
        "friends": 0,
        "username": "builderman",
        "followers": 71280938,
        "is_banned": false,
        "followings": 67856004,
        "description": null,
        "profile_url": "https://www.roblox.com/users/156/profile",
        "display_name": "builderman",
        "account_age_days": 7397,
        "has_verified_badge": true
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:25.248Z",
        "request_id": "bd95db06-0917-47ef-939b-592d81227879"
    },
    "status": "ok",
    "message": "User retrieved successfully",
    "success": true
}