Skip to main content
GET
/
v1
/
bot
/
me
curl https://hapi.7331.org/v1/bot/me \
  -H "X-API-Key: your-bot-api-key"
{
  "discord_id": "111222333444555666",
  "name": "Hansel Bot",
  "guilds": 250,
  "users": 50000,
  "owner_discord_id": "123456789012345678",
  "id": 1,
  "bot_type": 1,
  "is_active": true,
  "rate_limit_per_hour": 1000,
  "guild_ids": ["987654321098765432", "876543210987654321"],
  "avatar_url": "https://cdn.discordapp.com/avatars/111222333444555666/abc.png",
  "latency_ms": 45.2,
  "is_verified": true,
  "source": "database",
  "created_at": "2025-01-01T00:00:00Z",
  "updated_at": "2025-01-15T12:00:00Z"
}
X-API-Key
string
required
Bot API key.

Response

discord_id
string
required
Discord bot ID.
name
string
required
Bot display name.
guilds
integer
required
Number of guilds bot is in.
users
integer
required
Total unique users the bot can see.
owner_discord_id
string
required
Discord ID of the bot owner.
id
integer
required
Internal bot ID.
bot_type
integer
required
Bot type. 1 = Official, 2 = Verified, 3 = Community.
is_active
boolean
required
Whether bot is currently active.
rate_limit_per_hour
integer
required
Maximum API requests allowed per hour.
guild_ids
string[]
List of Discord guild IDs where the bot is present.
curl https://hapi.7331.org/v1/bot/me \
  -H "X-API-Key: your-bot-api-key"
{
  "discord_id": "111222333444555666",
  "name": "Hansel Bot",
  "guilds": 250,
  "users": 50000,
  "owner_discord_id": "123456789012345678",
  "id": 1,
  "bot_type": 1,
  "is_active": true,
  "rate_limit_per_hour": 1000,
  "guild_ids": ["987654321098765432", "876543210987654321"],
  "avatar_url": "https://cdn.discordapp.com/avatars/111222333444555666/abc.png",
  "latency_ms": 45.2,
  "is_verified": true,
  "source": "database",
  "created_at": "2025-01-01T00:00:00Z",
  "updated_at": "2025-01-15T12:00:00Z"
}