API 接口文档

接口地址: https://realfans.pro/api/v1/service/list?api_key= 点击查看API KEY

请求方式: GET

请求参数:

返回示例:

{
    "code": 200,
    "msg": "ok",
    "trace_id": "68714ab2b5d12",
    "data": [
        {
            "service": 94,
            "name": "【评论】YouTube 自定义评论 | 优质 | 快速 | 不掉落 | 售后365天",
            "platform": "youtube",
            "type": "comments",
            "rate": "10.78", // 单价,单位美元
            "min": 5,
            "max": 10000
        }
    ]
}

接口地址: https://realfans.pro/api/v1/order/create?api_key= 点击查看API KEY

请求方式: POST

请求参数:


# 表单编码或JSON均支持

{
    "service": 349,
    "link": "https://x.com/home",
    "quantity": 10,
    "comments": "hello\nworld" // 评论服务时必填,内容换行符分割,一行一条
}

返回示例:

{
    "code": 200,
    "msg": "ok",
    "trace_id": "6871420adc1b8",
    "data": {
        "order": 11288
    }
}

错误码:

  • 500 - 参数校验
  • 510 - 余额不足
  • 550 - 系统异常

接口地址: https://realfans.pro/api/v1/order/status?api_key= 点击查看API KEY

请求方式: GET

请求参数:

order=11289(支持批量,按逗号分割)

返回示例:

{
  "code": 200,
  "msg": "ok",
  "trace_id": "68714ec5ab9ec",
  "data": [
    {
      "order": 11289,
      "charge": "0.00000", // 金额,单位美元
      "status": "canceled", // pending-待处理;completed-完成;partial-部分完成;processing-处理中;canceled-已取消
      "start_count": null,
      "remains": 10
    }
  ]
}

接口地址: https://realfans.pro/api/v1/account?api_key= 点击查看API KEY

请求方式: GET

请求参数:

返回示例:

{
  "code": 200,
  "msg": "ok",
  "trace_id": "68714f440eeaf",
  "data": {
    "username": "example", // 用户名
    "balance": "0.64773", // 余额,单位美元
    "commission_total": "0.03", // 邀请佣金累计,单位人民币
    "available_total": "0.03", // 可提现佣金累计,单位人民币
    "commission_rate": 0.03 // 邀请佣金比例
  }
}