Skip to main content

Get Task Result

Retrieves the result of a previously created captcha solving task.

API Endpoint

Request Parameters

string
required
Your API key.
string
required
The ID of the task returned by the createTask request.

Response

string
The status of the task. Can be one of:
  • processing - The task is still being processed
  • ready - The task has been completed
  • failed - The task has failed
object
The solution data. Only present when status is ready.
object
Error details. Only present when status is failed.
string
The reCAPTCHA response token. Only present for reCAPTCHA tasks.
string
The hCaptcha response token. Only present for hCaptcha tasks.
string
The Turnstile response token. Only present for Turnstile tasks.
string
The text from the image. Only present for ImageToText tasks.
number
The score value for reCAPTCHA v3. Only present for reCAPTCHA v3 tasks.
string
The User-Agent used to solve the captcha. Present if a custom User-Agent was used.

Example Request

Example Response - Processing

Example Response - Ready (reCAPTCHA)

Example Response - Ready (hCaptcha)

Example Response - Failed

Error Codes

Common error codes:
  • ERROR_CAPTCHA_UNSOLVABLE - The captcha could not be solved
  • ERROR_KEY_DOES_NOT_EXIST - Invalid API key
  • ERROR_TASK_NOT_FOUND - Task not found
  • ERROR_PROXY_CONNECTION_FAILED - Proxy connection failed

Notes

  • The solution format varies depending on the captcha type.
  • You should poll this endpoint until the status is either ready or failed. We recommend using a polling interval of 3-5 seconds.
  • The solution is typically ready within 5-30 seconds, depending on the captcha type and difficulty.