Zum Inhalt springen
GET /v1/group

A group/community by id

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

Beispiel-Response

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

{
    "data": {
        "name": "RobloHunks",
        "owner": {
            "user_id": 1179762,
            "username": "RobloTim",
            "display_name": "RobloTim"
        },
        "roles": [
            {
                "name": "Guest",
                "rank": 0,
                "member_count": 0
            },
            {
                "name": "Member",
                "rank": 1,
                "member_count": 290642
            },
            {
                "name": "--",
                "rank": 1,
                "member_count": 290911
            },
            {
                "name": "-",
                "rank": 180,
                "member_count": 0
            },
            {
                "name": "DOOM",
                "rank": 200,
                "member_count": 2
            },
            {
                "name": "&",
                "rank": 254,
                "member_count": 0
            },
            {
                "name": "TREX",
                "rank": 255,
                "member_count": 1
            }
        ],
        "group_id": 1,
        "verified": false,
        "group_url": "https://www.roblox.com/groups/1",
        "description": null,
        "member_count": 290642,
        "public_entry_allowed": true
    },
    "meta": {
        "timestamp": "2026-06-13T14:10:30.156Z",
        "request_id": "2a4ed798-a060-4a92-8c2d-72a58cb25de3"
    },
    "status": "ok",
    "message": "Group retrieved successfully",
    "success": true
}