Skip to main content
POST
/
admin
/
gateway
/
memory-stats
Get guild memory statistics
curl --request POST \
  --url https://api.fluxer.app/v1/admin/gateway/memory-stats \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "limit": 50
}'
{
  "guilds": [
    {
      "guild_id": "<string>",
      "guild_name": "<string>",
      "guild_icon": "<string>",
      "memory": "<string>",
      "member_count": 1073741823,
      "session_count": 1073741823,
      "presence_count": 1073741823
    }
  ]
}

Authorizations

Authorization
string
header
required

Admin API key: Authorization: Admin <token>. Only valid for /admin/* endpoints.

Body

application/json
limit
integer<int32>
Required range: 1 <= x <= 100

Response

Success

guilds
object[]
required
Maximum array length: 100