check_url_safely

check_url_safely只读扩展
检查链接安全性

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

Parameters

This action takes no parameters.

Returns (data)

{ level }:安全等级(占位实现,恒为 1)。

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

Field Type Required Description
level integer 安全等级(占位,恒 1)
Raw JSON Schema
{
  "type": "object",
  "properties": {
    "level": {
      "type": "integer",
      "description": "安全等级(占位,恒 1)"
    }
  },
  "required": [
    "level"
  ]
}

Examples

curl
Python
JavaScript
Go
SnowLuma SDK
curl -X POST http://127.0.0.1:3000/check_url_safely \
  -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.