Skip to main content
GET
/
v1
/
admin
/
bots
curl https://portal-api.7331.org/v1/admin/bots \
  -b "psession=YOUR_SESSION"
[
  {
    "id": 1,
    "name": "Portal Bot",
    "owner_id": 42,
    "bot_type": 1,
    "is_active": true,
    "rate_limit_per_hour": 1000,
    "groups": 250,
    "users": 50000,
    "is_verified": true,
    "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.

Requires an active admin session cookie.
offset
integer
default:"0"
Pagination offset.
limit
integer
default:"25"
Page size. Range: 1-25.

Response

Returns an array of bot objects with full admin details including API key info and rate limits.
curl https://portal-api.7331.org/v1/admin/bots \
  -b "psession=YOUR_SESSION"
[
  {
    "id": 1,
    "name": "Portal Bot",
    "owner_id": 42,
    "bot_type": 1,
    "is_active": true,
    "rate_limit_per_hour": 1000,
    "groups": 250,
    "users": 50000,
    "is_verified": true,
    "created_at": "2025-01-01T00:00:00Z",
    "updated_at": "2025-01-15T12:00:00Z"
  }
]