hcaptcha

What Is hCaptcha

Similar to reCAPTCHA v2, hCaptcha asks users to confirm they're not a bot by checking a box. It might also require users to identify specific categories of images.

hCaptcha Demo

Best hCaptcha Solver

Capsolver is the cheapest and fastest hCaptcha solver to solve the hCaptcha.

Capsolver use AI-powered Captcha Solving Algorithms, which result in faster solving speed and significantly reduced costs, providing an excellent developer experience.

Highly Reliable

We have the fastest update speed among similar providers.

No Risks

You only pay for solved captchas.Strict cooperation review will ban any illegal activities.

AI-Powered

We use AI for fully automated captcha solving.

Compatibility

Capsolver works with APIs of popular manual captcha recognition services.

Diverse Solutions

Capsolver provides API service and extension on Chrome.

Trustworthy

More than 1000+ platforms have integrated our API.

The method of resolving captcha issues with Capsolver is as follows:

After using the Capsolver service, when users encounter captcha problems, they send requests to Capsolver. Upon receiving the request for the corresponding captcha issue, Capsolver efficiently and quickly solves the captcha problem for the users.

SolutionsPricing
hCaptcha

HCaptchaTask

HCaptchaTaskProxyLess

$0.8/1000 requests
$0.2/1000 images

How To Solve hCaptcha-API Guide

Capsolver auto captcha solving service can easily solve hCaptcha. Capsolver provides two Captcha solving services that help you to solve hCaptcha.

One of the services is to use Capsolver's API , the other one is to download the extension in Chrome.

Registering for CapSolver and getting our captcha services.

Step 1 : Creating a Task

Use the method createTask to submit the required information:

POST https://api.capsolver.com/createTask
Host: api.capsolver.com
Content-Type: application/json

{
  "clientKey": "YOUR_API_KEY",
  "task": {
    "type": "HCaptchaTaskProxyless",
    "websiteURL": "https://hcaptcha.com/",
    "websiteKey": "00000000-0000-0000-0000-000000000000"
    }
}

After you submit the task to us, you should receive in the response a ‘Task id’ if it’s successful. Please read errorCode: full list of errors if you didn’t receive the task id.

Example response:

{
  "errorId": 0,
  "errorCode": "",
  "errorDescription": "",
  "taskId": "61138bb6-19fb-11ec-a9c8-0242ac110006"
}

Step 2 : Getting Results

To verify the results, you'll need to continuously poll the getTaskResult API endpoint until the captcha is resolved. Depending on the system load, you will get the results within the interval of 1s to 10s.

Example request:

POST https://api.capsolver.com/getTaskResult
Host: api.capsolver.com
Content-Type: application/json

{
  "clientKey": "YOUR_API_KEY",
  "taskId": "61138bb6-19fb-11ec-a9c8-0242ac110006"
}

Example response:

{
  "errorId": 0,
  "errorCode": null,
  "errorDescription": null,
  "solution": {
    //userAgent used to solve the captcha
    "userAgent": "xxx",
    //expireTime of the token
    "expireTime": 1671615324290,
    "timestamp": 1671615024290,
    "captchaKey": "E0_xxx",
    //token of the captcha
    "gRecaptchaResponse": "3AHJ....."
  },
  "status": "ready"
}

Solving hCaptcha using Capsolver SDK:

Popular captchas supported

Easily use Capsolver to solve captchas

We ensure that integrating our products into your infrastructure is as effortless as possible. With multiple language support and ready-to-use code examples, a quick and easy start to your web project is a guarantee.

Documentation For Developers

# pip install --upgrade capsolver
# export CAPSOLVER_API_KEY='...'

import capsolver

# capsolver.api_key = "..."
solution = capsolver.solve({
    "type": "HCaptchaTaskProxyLess",
    "websiteURL": "https://hcaptcha.com/",
    "websiteKey": "00000000-0000-0000-0000-000000000000",
})
package main

import (
    "fmt"
    capsolver_go "github.com/capsolver/capsolver-go"
    "log"
)

func main() {
    // first you need to install sdk
    //go get github.com/capsolver/capsolver-go
    //export CAPSOLVER_API_KEY='...' or
    //capSolver := CapSolver{ApiKey:"..."}

    capSolver := capsolver_go.CapSolver{}
    solution, err := capSolver.Solve(map[string]any{
        "type":       "HCaptchaTaskProxyLess",
        "websiteURL": "https://hcaptcha.com/",
        "websiteKey": "00000000-0000-0000-0000-000000000000",
    })
    if err != nil {
        log.Fatal(err)
        return
    }
    fmt.Println(solution)
}

How to SolvehCaptcha-Solve Extension

Captcha Solving Extension supported in Chrome and Firefox browsers
Our browser extension allows you to automatically solve image recognition or Optical Character Recognition (OCR).

Including reCAPTCHA v2, v3, hCaptcha, FunCaptcha, Cloudflare Turnstile, AWS WAF, and more types.

hCaptcha
reCAPTCHA
FunCaptcha
Cloudflare
Aws
More types

Free Trial

Recognize 15+ other captcha types
I'M NOT A ROBOT