Skip to main content
GET
/
v1
/
admin
/
bots
curl https://hapi.7331.org/v1/admin/bots \
  -b cookies.txt
[
  {
    "discord_id": "111222333444555666",
    "name": "Hansel Bot",
    "owner_discord_id": "123456789012345678",
    "id": 1,
    "bot_type": 1,
    "is_active": true,
    "rate_limit_per_hour": 1000,
    "guilds": 250,
    "users": 50000,
    "is_verified": true,
    "created_at": "2025-01-01T00:00:00Z",
    "updated_at": "2025-01-15T12:00:00Z"
  }
]
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://hapi.7331.org/v1/admin/bots \
  -b cookies.txt
[
  {
    "discord_id": "111222333444555666",
    "name": "Hansel Bot",
    "owner_discord_id": "123456789012345678",
    "id": 1,
    "bot_type": 1,
    "is_active": true,
    "rate_limit_per_hour": 1000,
    "guilds": 250,
    "users": 50000,
    "is_verified": true,
    "created_at": "2025-01-01T00:00:00Z",
    "updated_at": "2025-01-15T12:00:00Z"
  }
]