Skip to main content
POST
/
v1
/
bot
/
me
curl -X POST https://hapi.7331.org/v1/bot/me \
  -H "Content-Type: application/json" \
  -H "X-API-Key: your-bot-api-key" \
  -d '{
    "guild_ids": ["987654321098765432", "876543210987654321"],
    "users": 5000,
    "latency_ms": 42.5
  }'
{
  "message": "Bot statistics updated successfully",
  "created_at": "2025-01-01T00:00:00Z",
  "updated_at": "2025-01-15T12:30:00Z"
}
X-API-Key
string
required
Bot API key.
guild_ids
string[]
required
List of guild IDs where bot is present. Guild count is derived from this.
users
integer
required
Total number of users bot serves.
latency_ms
number
Current bot latency in milliseconds.
avatar_url
string
Bot’s current avatar URL.

Response

message
string
required
Success message.
curl -X POST https://hapi.7331.org/v1/bot/me \
  -H "Content-Type: application/json" \
  -H "X-API-Key: your-bot-api-key" \
  -d '{
    "guild_ids": ["987654321098765432", "876543210987654321"],
    "users": 5000,
    "latency_ms": 42.5
  }'
{
  "message": "Bot statistics updated successfully",
  "created_at": "2025-01-01T00:00:00Z",
  "updated_at": "2025-01-15T12:30:00Z"
}