Skip to main content
GET
/
v1
/
bots
/
{bot_id}
curl https://portal-api.7331.org/v1/bots/1 \
  -b "psession=YOUR_SESSION"
{
  "id": 1,
  "name": "Portal Bot",
  "groups": 250,
  "users": 50000,
  "avatar_url": "https://cdn.example.com/bots/1/avatar.png",
  "latency_ms": 45.2,
  "is_verified": true,
  "last_activity_at": "2025-01-15T12:00: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.

Public access returns basic stats and verification status. Admins and above see full details including owner, rate limits, and bot type.
bot_id
integer
required
Bot ID.
Session cookie (psession).

Response

Public (unauthenticated or non-admin)

id
integer
required
Bot ID.
name
string
required
Bot display name.
avatar_url
string
Bot avatar URL.
groups
integer
Number of groups the bot is in.
users
integer
Number of users the bot serves.
latency_ms
number
Bot latency in milliseconds.
is_verified
boolean
Whether the bot is verified (Official or Verified type).
last_activity_at
string
When the bot was last active.

Elevated (admin+)

All public fields plus:
owner_id
integer
ID of the bot owner.
bot_type
integer
Bot type. 1 = Official, 2 = Verified, 3 = Community.
is_active
boolean
Whether the bot is currently active.
rate_limit_per_hour
integer
API rate limit per hour.
curl https://portal-api.7331.org/v1/bots/1 \
  -b "psession=YOUR_SESSION"
{
  "id": 1,
  "name": "Portal Bot",
  "groups": 250,
  "users": 50000,
  "avatar_url": "https://cdn.example.com/bots/1/avatar.png",
  "latency_ms": 45.2,
  "is_verified": true,
  "last_activity_at": "2025-01-15T12:00:00Z",
  "created_at": "2025-01-01T00:00:00Z",
  "updated_at": "2025-01-15T12:00:00Z"
}