Menu

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

PropertyTypeRequiredPurpose
clientKeyStringYes
taskIdIntegerYes

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

PropertyTypePurpose
errorIdIntegerError identifier.
0 - no errors, operation completed successfully.
>0 - error identifier. Error code with short description are available in errorCode and errorDescription properties.
errorCodeString
errorDescriptionStringShort description of the error
statusStringThe 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"
}