reportIncorrectHcaptcha: send complaint on an hCaptcha token
Use this method to send us information about tokens which did not pass on target service. Refunds are not guaranteed; however, sending reports helps the system to filter out workers that were banned in the hCaptcha network. Complaints are accepted for hCaptchas only, including Enterprise hCaptchas.
Address: https://api.anti-captcha.com/reportIncorrectHcaptcha
Method: POST
Content-type: application-json
Request properties
Property | Type | Required | Purpose |
---|---|---|---|
clientKey | String | Yes | |
taskId | Integer | Yes |
Request example
curl -i -H "Accept: application/json" \
-H "Content-Type: application/json" \
-X POST -d '{
"clientKey":"YOUR_API_KEY",
"taskId":12345
}' https://api.anti-captcha.com/reportIncorrectHcaptcha
Response structure
Property | Type | Purpose |
---|---|---|
errorId | Integer | Error identifier. 0 - no errors, operation completed successfully. >0 - error identifier. Error code with short description are available in errorCode and errorDescription properties. |
errorCode | String | |
errorDescription | String | Short description of the error |
status | String | The result of the operation. You either receive an error code or status="success" when the complaint is accepted. |
Response example
JSON with no errors
JSON with an error
{
"errorId":0,
"status":"success"
}