Skip to content
GET /v1/user

User profile + social counts

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/roblox-api

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

Get an API key

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_..."}
)

Example response

A real response from this endpoint, captured by the latest 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
}