Skip to main content
GET
/
v1
/
bots
curl "https://portal-api.7331.org/v1/bots?limit=10&offset=0" \
  -H "X-API-Key: YOUR_API_KEY"
[
  {
    "id": 1,
    "name": "Portal Bot",
    "groups": 250,
    "users": 50000,
    "avatar_url": "https://cdn.discordapp.com/avatars/111222333444555666/abc.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.

offset
integer
default:"0"
Pagination offset. Minimum: 0.
limit
integer
default:"50"
Maximum number of bots to return. Range: 1-100.
X-API-Key
string
required
Public API key.

Response

Returns an array of bot public profiles.
id
integer
required
Bot ID.
name
string
required
Bot display name.
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.
latency_ms
number
Average latency in milliseconds.
is_verified
boolean
Whether this is an official/verified bot.
last_activity_at
string
When the bot last reported activity (UTC).
created_at
string
required
When the bot was created (UTC).
updated_at
string
required
When the bot was last updated (UTC).
curl "https://portal-api.7331.org/v1/bots?limit=10&offset=0" \
  -H "X-API-Key: YOUR_API_KEY"
[
  {
    "id": 1,
    "name": "Portal Bot",
    "groups": 250,
    "users": 50000,
    "avatar_url": "https://cdn.discordapp.com/avatars/111222333444555666/abc.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"
  }
]