Menu

reportIncorrectHcaptcha: send complaint on a 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 system to filter out workers which were banned in Hcaptcha network. Complaints are accepted for Hcaptchas only, including Enterprise Hcaptcha.

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 and its 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 complaint is accepted.

Response example

JSON with no errors
JSON with an error
{
    "errorId":0,
    "status":"success"
}