Skip to content

自定义解码服务接口

WARNING

请在设置-解码-自定义解码中添加你的 api 地址

接口规范

wave请求方式

  • 统一使用POST请求

请注意:Content-Typeapplication/json

cf5秒盾参数

参数名类型必填说明
typestringcf5s
websiteUrlstring目标网站
proxystring代理

cftoken参数

参数名类型必填说明
typestringcftoken
websiteUrlstring目标网站
websiteKeystring目标网站的 cf turnstile key

recaptchaV2参数

参数名类型必填说明
typestringrecaptchaV2
websiteUrlstring目标网站
websiteKeystring目标网站的 recaptcha key

recaptchaV3参数

参数名类型必填说明
typestringrecaptchaV3
websiteUrlstring目标网站
websiteKeystring目标网站的 recaptcha key
pageActionstring目标网站的 recaptcha action

hcaptcha参数

参数名类型必填说明
typestringhcaptcha
websiteUrlstring目标网站
websiteKeystring目标网站的 hcaptcha key
proxystring代理

vercel盾参数

参数名类型必填说明
typestringvercel
websiteUrlstring目标网站
proxystring代理

接口返回格式

请注意:code200 时表示解码成功,其他情况均为失败

5 秒盾返回格式

json
{
  "code": 200,
  "message": "xxx",
  "headers": {
    "cookie": "xxx",
    "user-agent": "xxx"
    // 其他需要返回的 header字段
  }
}

非5秒盾返回格式

json
{
  "code": 200,
  "message": "xxx",
  "token": "xxx"
}