Skip to main content
POST
/
v1
/
portal
/
chats
/
{chat_id}
/
stop
curl -X POST https://portal-api.7331.org/v1/portal/chats/42/stop \
  -b "psession=YOUR_SESSION"
{
  "ok": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.7331.org/llms.txt

Use this file to discover all available pages before exploring further.

Stops the neko VM for a chat. Chat viewers stay connected and can still send messages — only the virtual browser session ends. Broadcasts a room:stopped event to all chat viewers and cancels any pending idle-shutdown timer for the chat. Authorization: Chat owner, or platform OWNER.
chat_id
integer
required
Chat ID.

Response

ok
boolean
required
true if the VM was stopped (or was already stopped).
curl -X POST https://portal-api.7331.org/v1/portal/chats/42/stop \
  -b "psession=YOUR_SESSION"
{
  "ok": true
}
Stopping the VM does not remove users from chat. Use Destroy Chat to fully tear down a chat.