LogoAntiRaid
Misc

Base Guild User Info

Returns basic user/guild information

GET
/users/@me/guilds/{guild_id}

Path Parameters

guild_idstring

The ID of the guild to get the user info for

Response Body

application/json

application/json

curl -X GET "https://loading/users/@me/guilds/string"
{
  "bot_roles": [
    "string"
  ],
  "channels": [
    {
      "bot": "string",
      "channel": {
        "id": "string",
        "name": "string",
        "parent_id": "string",
        "position": 0,
        "type": 0
      },
      "user": "string"
    }
  ],
  "icon": "string",
  "name": "string",
  "owner_id": "string",
  "roles": [
    {
      "id": "string",
      "name": "string",
      "permissions": "string",
      "position": 0
    }
  ],
  "user_roles": [
    "string"
  ]
}
{
  "code": "InternalAuthError",
  "message": "string"
}

Last updated on