Skip to main content
GET
/
v1
/
bot
/
me
curl https://portal-api.7331.org/v1/bot/me \
  -H "X-API-Key: your-bot-api-key"
{
  "id": 1,
  "name": "Portal Bot",
  "platform": "discord",
  "groups": 250,
  "users": 50000,
  "owner_id": 42,
  "bot_type": 1,
  "is_active": true,
  "rate_limit_per_hour": 1000,
  "avatar_url": "https://cdn.discordapp.com/avatars/111222333444555666/abc.png",
  "latency_ms": 45.2,
  "is_verified": true,
  "last_activity_at": "2026-03-19T10:30:00Z",
  "created_at": "2025-01-01T00:00:00Z",
  "updated_at": "2025-01-15T12:00:00Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.7331.org/llms.txt

Use this file to discover all available pages before exploring further.

X-API-Key
string
required
Bot API key.

Response

id
integer
required
Internal bot ID.
name
string
required
Bot display name.
platform
string
required
Platform this bot operates on (e.g. discord, telegram).
groups
integer
required
Number of groups bot is in.
users
integer
required
Total unique users the bot can see.
avatar_url
string
Bot avatar URL. May be null.
latency_ms
number
Average platform latency in milliseconds. May be null.
is_verified
boolean
required
Whether this is an official or verified bot instance.
last_activity_at
string
When the bot last reported activity (ISO 8601). May be null.
owner_id
integer
required
ID of the bot owner.
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.
created_at
string
required
When the bot was created (ISO 8601).
updated_at
string
required
When the bot was last updated (ISO 8601).
curl https://portal-api.7331.org/v1/bot/me \
  -H "X-API-Key: your-bot-api-key"
{
  "id": 1,
  "name": "Portal Bot",
  "platform": "discord",
  "groups": 250,
  "users": 50000,
  "owner_id": 42,
  "bot_type": 1,
  "is_active": true,
  "rate_limit_per_hour": 1000,
  "avatar_url": "https://cdn.discordapp.com/avatars/111222333444555666/abc.png",
  "latency_ms": 45.2,
  "is_verified": true,
  "last_activity_at": "2026-03-19T10:30:00Z",
  "created_at": "2025-01-01T00:00:00Z",
  "updated_at": "2025-01-15T12:00:00Z"
}