User Checking

Check a single user

Check if a user exists and retrieve their group memberships, group counts, and group types.

get/v2/checkuser/{id}

Path parameters

idstring required

User ID to check

Response

User found successfully

successboolean
userIdstring
usernamestring
groupCountnumber
groupTypesobject

Breakdown of the groups by their type (keys are the group type names)

lastSeenstring date-time

Example response

{
  "success": true,
  "userId": "123456789",
  "username": "JohnDoe",
  "groupCount": 3,
  "groupTypes": {
    "Condo Hosting": {
      "count": 2
    },
    "NSFW Clothing": {
      "count": 1
    }
  }
}

Changes