The resource path of the group.
Format: groups/{group_id}.
A mini-community within Roblox for communication, discussions, and more.
The resource path of the group.
Format: groups/{group_id}.
The timestamp when the group was created. This string is formatted as a Timestamp.
The timestamp when the group was last updated. This string is formatted as a Timestamp.
A unique ID that identifies the group.
The name of the group.
Must be non-empty. Has a maximum limit of 50 characters.
The description of the group.
Has a maximum limit of 1000 characters.
The resource path of the owner.
If the group is abandoned and has no owner, this field is not returned.
The total number of members within a group.
Whether the group allows public entry.
Whether the group is locked.
A locked group is a group that has been moderated/banned by Roblox.
Whether the group has the verified badge.
https://apis.roblox.com
{
"path": "groups/123",
"createTime": "2023-07-05T12:34:56Z",
"updateTime": "2023-07-05T12:34:56Z",
"id": "7",
"displayName": "Roblox",
"description": "Official fan club of Roblox!",
"owner": "users/21557",
"memberCount": 10196297,
"publicEntryAllowed": true,
"locked": true,
"verified": true
}
Gets the specified group.
The group ID.
curl -L -X GET 'https://apis.roblox.com/cloud/v2/groups/{group_id}' \
-H 'x-api-key: {your-api-key}'
{
"path": "groups/123",
"createTime": "2023-07-05T12:34:56Z",
"updateTime": "2023-07-05T12:34:56Z",
"id": "7",
"displayName": "Roblox",
"description": "Official fan club of Roblox!",
"owner": "users/21557",
"memberCount": 10196297,
"publicEntryAllowed": true,
"locked": true,
"verified": true
}