Create Task
Creates a new captcha solving task and returns a task ID that can be used to retrieve the result.API Endpoint
Request Parameters
Your API key.
An object containing task-specific parameters.
The type of captcha task to solve. Possible values include:
RecaptchaV2Task
- Regular reCAPTCHA v2RecaptchaV3Task
- reCAPTCHA v3HCaptchaTask
- hCaptcha (standard and enterprise; setenterprise
totrue
for enterprise sites)TurnstileTask
- Cloudflare TurnstileFunCaptchaTask
- FunCaptcha (Arkose Labs)ImageToTextTask
- Image-based captcha
The URL of the page where the captcha is located.
The site key of the captcha from the target website.
Set to
true
if the reCAPTCHA is invisible. Only applicable for RecaptchaV2Task.Minimum score required for reCAPTCHA v3. Only applicable for RecaptchaV3Task.
Action name used for reCAPTCHA v3. Only applicable for RecaptchaV3Task.
The User-Agent header that will be used in solving the captcha.
Proxy in format
login:password@ip_address:port
.Set to
true
if the hCaptcha is invisible. Default is false
.Set to
true
for enterprise hCaptcha (Discord, Epic Games, TikTok, etc). Default is false
.Response
The unique identifier of the created task. Used to retrieve the task result.
Example Request - reCAPTCHA v2
Example Request - hCaptcha (Standard)
Example Request - hCaptcha (Enterprise)
Example Response
Error Codes
Error details when the request fails.
Error ID.
Error code identifier.
Human-readable error description.
ERROR_KEY_DOES_NOT_EXIST
- Invalid API keyERROR_INSUFFICIENT_BALANCE
- Not enough balanceERROR_VALIDATION_FAILED
- Invalid request parametersERROR_NO_SLOT_AVAILABLE
- No available slots for task processingERROR_IP_BANNED
- IP address banned
Notes
- The task will be processed asynchronously. Use the returned
taskId
with the Get Task Result endpoint to retrieve the solution. - Different captcha types require different parameters. Refer to the documentation for specific captcha types for details.
- For hCaptcha (standard and enterprise), use
HCaptchaTask
and setenterprise
totrue
for enterprise sites. - Proxy usage is recommended for geo-restricted captchas or to improve success rates.