Lists all voice servers with connection counts and capacity. Shows server status, region assignment, and load metrics. Supports filtering and pagination. Requires VOICE_SERVER_LIST permission.
curl --request POST \
--url https://api.fluxer.app/v1/admin/voice/servers/list \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"region_id": "<string>"
}
'{
"servers": [
{
"region_id": "<string>",
"server_id": "<string>",
"endpoint": "<string>",
"is_active": true,
"vip_only": true,
"required_guild_features": [
"<string>"
],
"allowed_guild_ids": [
"<string>"
],
"allowed_user_ids": [
"<string>"
],
"created_at": "<string>",
"updated_at": "<string>"
}
]
}Admin API key: Authorization: Admin <token>. Only valid for /admin/* endpoints.
ID of the region to list servers for
Success
List of voice servers
100Show child attributes
curl --request POST \
--url https://api.fluxer.app/v1/admin/voice/servers/list \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"region_id": "<string>"
}
'{
"servers": [
{
"region_id": "<string>",
"server_id": "<string>",
"endpoint": "<string>",
"is_active": true,
"vip_only": true,
"required_guild_features": [
"<string>"
],
"allowed_guild_ids": [
"<string>"
],
"allowed_user_ids": [
"<string>"
],
"created_at": "<string>",
"updated_at": "<string>"
}
]
}