接口基本信息

GET/POSThttps://api.sicxs.cn/i/qch.php
项目说明
用途多账号共享发帖产生的 PostID,用于脚本进行跨账号互相点赞与评论。
返回格式application/json
编码UTF-8

接口列表

action方法说明主要参数
get_othersGET获取除自己以外的其他账号帖子 IDref(排除的账号标识)
addPOST同步/追加账号的帖子 IDJSON Body: ref, post_ids
get_allGET获取所有账号的帖子 ID 列表
clearPOST清空指定账号的帖子 ID 记录JSON Body: ref

字段说明

字段是否必须说明
ref账号标识(YYB 账号 ref 或手动模式唯一标识 manual_xxx)。
post_ids帖子 ID 数组,格式为数值数组(如 [101, 102])。

调用示例

获取他人帖子
上传帖子ID
Python
curl "https://api.sicxs.cn/i/qch.php?action=get_others&ref=user_01"
curl -X POST "https://api.sicxs.cn/i/qch.php?action=add" \
  -H "Content-Type: application/json" \
  -d '{"ref": "user_01", "post_ids": [12345, 67890]}'
import requests

url = "https://api.sicxs.cn/i/qch.php"

# 获取其他账号帖子列表
res = requests.get(url, params={"action": "get_others", "ref": "user_01"}).json()
print("其它账号帖子:", res.get("data"))

# 上传当前账号帖子
payload = {"ref": "user_01", "post_ids": [12345]}
requests.post(f"{url}?action=add", json=payload)

返回示例

get_others 返回
add 返回
{
  "code": 0,
  "data": {
    "user_02": [1001, 1002],
    "manual_a1b2c3d4": [2001]
  },
  "message": "success"
}
{
  "code": 0,
  "data": {
    "updated_at": "2026-07-23 00:14:45",
    "post_ids": [12345, 67890]
  },
  "message": "添加成功"
}