API 端点
POST
/rev3
| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| siteKey | String | 必需 | ReCaptcha SiteKey |
| siteReferer | String | 必需 | ReCaptcha Referer |
| siteAction | String | 可选 | ReCaptchaV3 Action |
| proxyUrl | String | 可选 | 代理 URL (支持 HTTP 和 SOCKS5) |
代理类型
| 代理类型 | 普通代理 | 认证代理 |
|---|---|---|
| HTTP | https://host:port | https://user:pass@host:port |
| SOCKS5 | socks5://host:port | socks5://user:pass@host:port |
请求示例
POST https://your-domain.com/rev3
Content-Type: application/json
{
"siteKey": "6Lcyqq8oAAAAAJE7eVJ3aZp_hnJcI6LgGdYD8lge",
"siteReferer": "https://example.com",
"siteAction": "submit",
"proxyUrl": "socks5://proxy.example.com:1080"
}
响应示例
{
"success": true,
"token": "03AHJ_Vu5...",
"processingTime": 1234.56
}