Skip to main content
POST
/
v1
/
portal
/
chats
/
{chat_id}
/
start
curl -X POST https://portal-api.7331.org/v1/portal/chats/42/start \
  -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.

Starts the neko VM for a chat. If the VM is already running, returns 200 OK immediately (idempotent). On success, broadcasts a room:started event to all chat viewers and pushes neko credentials to users who were already in chat while the VM was stopped. Authorization: Chat owner, or platform OWNER.
chat_id
integer
required
Chat ID.

Response

ok
boolean
required
true if the VM started (or was already running).
curl -X POST https://portal-api.7331.org/v1/portal/chats/42/start \
  -b "psession=YOUR_SESSION"
{
  "ok": true
}
Users who joined chat while the VM was stopped automatically receive neko credentials after the VM starts — no rejoin required.