fetch_super_face_id

fetch_super_face_id只读系统表情
判断 QQ 系统表情是否使用超级表情格式

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

Parameters

Param Type Required Default Description
face_id int QQ 系统表情编号
refresh bool false 是否强制从 QQ 刷新目录

Returns (data)

是否使用超级表情格式。

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

Field Type Required Description
is_super boolean
Raw JSON Schema
{
  "type": "object",
  "properties": {
    "is_super": {
      "type": "boolean"
    }
  },
  "required": [
    "is_super"
  ]
}

Examples

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

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