Skip to main content
GET
/
v1
/
guilds
/
{guild_id}
/
room-settings
curl https://hapi.7331.org/v1/guilds/987654321098765432/room-settings \
  -b cookies.txt
{
  "browser": "brave",
  "proxy": "none",
  "start_url": "https://google.com",
  "kiosk": false,
  "allow_control_requests": true
}
Requires an active session cookie. The caller must be the guild owner, guild sponsor, or ADMIN+.
guild_id
integer
required
Discord snowflake ID of the guild.

Response

Returns the guild’s room settings object.
browser
string
Browser type for the room VM (e.g. brave, tor).
proxy
string
Proxy region (e.g. us, eu, none).
start_url
string
Default URL opened when the room VM starts.
kiosk
boolean
Whether to launch the browser in kiosk mode.
allow_control_requests
boolean
Whether users can request control of the VM.
curl https://hapi.7331.org/v1/guilds/987654321098765432/room-settings \
  -b cookies.txt
{
  "browser": "brave",
  "proxy": "none",
  "start_url": "https://google.com",
  "kiosk": false,
  "allow_control_requests": true
}