Skip to main content
GET
/
v1
/
bot
/
users
/
{discord_id}
curl https://hapi.7331.org/v1/bot/users/123456789012345678 \
  -H "X-API-Key: your-bot-api-key"
{
  "discord_id": "123456789012345678",
  "username": "exampleuser",
  "avatar_url": "https://cdn.discordapp.com/avatars/123456789012345678/abc.png",
  "subscription_tier": 0,
  "state": 0,
  "permission_level": 0,
  "prefix": "!",
  "last_activity_at": "2025-01-15T12:00:00Z",
  "source": "database",
  "created_at": "2025-01-01T00:00:00Z",
  "updated_at": "2025-01-15T12:00:00Z"
}
discord_id
integer
required
Discord snowflake ID.
X-API-Key
string
required
Bot API key.

Response

Returns the user’s full private profile. See Get Current User for the schema.
curl https://hapi.7331.org/v1/bot/users/123456789012345678 \
  -H "X-API-Key: your-bot-api-key"
{
  "discord_id": "123456789012345678",
  "username": "exampleuser",
  "avatar_url": "https://cdn.discordapp.com/avatars/123456789012345678/abc.png",
  "subscription_tier": 0,
  "state": 0,
  "permission_level": 0,
  "prefix": "!",
  "last_activity_at": "2025-01-15T12:00:00Z",
  "source": "database",
  "created_at": "2025-01-01T00:00:00Z",
  "updated_at": "2025-01-15T12:00:00Z"
}