get_status

get_status只读信息

Call via POST http://127.0.0.1:3000/get_status (JSON params as the body) or WebSocket.

Parameters

This action takes no parameters.

Returns (data)

运行状态。online/good 均表示账号是否在线。

Every response is wrapped in the standard envelope: { "status": "ok", "retcode": 0, "data": ... }. The table below describes data.

Field Type Required Description
online boolean 是否在线
good boolean 状态是否正常(与 online 一致)
Raw JSON Schema
{
  "type": "object",
  "properties": {
    "online": {
      "type": "boolean",
      "description": "是否在线"
    },
    "good": {
      "type": "boolean",
      "description": "状态是否正常(与 online 一致)"
    }
  },
  "required": [
    "online",
    "good"
  ]
}

Examples

curl
Python
JavaScript
Go
SnowLuma SDK
curl -X POST http://127.0.0.1:3000/get_status \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer <access-token>' \
  -d '{}'
Using an AI assistant?

MCP-capable clients can discover and call this action directly — no hand-written HTTP. See MCP.