版本比较

密钥

  • 该行被添加。
  • 该行被删除。
  • 格式已经改变。

...

Request format:POST application/json

Example Structure

titledefaultRecaptchaV2TaskProxyless status

Parameters

Type

Required

Purpose

type

string

Yes

NoCaptchaTaskProxyless

状态
colourGreen
title15 POINTS

RecaptchaV2TaskProxyless

状态
colour

Yellow

Green
title20 POINTS

->

RecaptchaV2TaskProxylessK1

状态
colourGreen
title

18

20 POINTS
状态
colour

Yellow

Purple
title

Higher quality

Customized type
状态
colour

Yellow

Purple
title

more stable

contact US before use

websiteURL

string

Yes

The address of the ReCaptcha web page.Fixed value.🔗 How to find the value of websiteURL?

websiteKey

String

Yes

The ReCaptcha website key. Fixed value.🔗 How to find the value of websiteKey?

isInvisible

Bool

No

If you encounter a reCaptchaV2 of isInvisible type, you need to add this parameter. 🔗 How to determine the version of reCaptcha?

Request Example

代码块
languagejson
{
    "clientKey": "cc9c18d3e263515c2c072b36a7125eecc078618f",
    "task": {
        "websiteURL": "https://www.google.com/recaptcha/api2/demo",
        "websiteKey": "6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-",
        "type": "NoCaptchaTaskProxyless",
        "isInvisible": false // You only need to add the true value if the reCaptcha type is isInvisible.
    }
}

...

代码块
{
    "clientKey":"cc9c18d3e263515c2c072b36a7125eecc078618f3",
    "taskId": "61138bb6-19fb-11ec-a9c8-0242ac110006"
}

Response Result

Parameters

Type

Purpose

errorId

Integer

Error message: 0 - No error, 1 - Error

errorCode

string

Error code.Check out🔗 errors list.

errorDescription

string

Error description

status

String

processing - task is not ready yet.
ready - task complete, solution object can be found in solution property.

solution

Object

Task result data. Different for each type of task.

gRecaptchaResponse

string

Recognition result: The response value, which is used to make a POST or simulated submission to the target website.

The response value is for one-time use only and is valid for 120 seconds. We recommend using it within 60 seconds.🔗 How to pass Google reCaptcha using the API

Response Example

代码块
languagejson
{
    "errorId": 0,
    "errorCode": null,
    "errorDescription": null,
    "solution": {
        "gRecaptchaResponse": "03AGdBq25SxXT-pmSeBXjzScW-EiocHwwpwqtk1QXlJnGnU......"
    },
    "status": "ready"
}

...