Overview

reCAPTCHA solving, one API.

One API for every reCAPTCHA flavour - checkbox, invisible and score-based. Neural solvers return a valid token in milliseconds.

No solving farms, no browser fleets to babysit. Send the site key and URL to /createTask, poll for the token, drop it into your request.

How we solve it
01 · DETECT

Send the challenge

Site key, URL and type to /createTask.

02 · SOLVE

Neural solver

ML + fingerprint emulation crack it.

03 · SHIP

Get your token

Poll /getTaskResult, use the token.

Quickstart

Ship it in five lines.

# pip install capbypass
from capbypass import Client

client = Client(api_key="cb_live_...")

token = client.solve(
    type="ReCaptchaV3Task",
    websiteURL="https://target.com",
    websiteKey="6Le-...abc",
    pageAction="login",
)
print(token) # solved in 430ms
// npm i @capbypass/sdk
import { Client } from "@capbypass/sdk";

const client = new Client({ apiKey: "cb_live_..." });

const token = await client.solve({
  type: "ReCaptchaV3Task",
  websiteURL: "https://target.com",
  websiteKey: "6Le-...abc",
  pageAction: "login",
});
console.log(token); // solved in 430ms
// go get github.com/capbypass/go
client := capbypass.New("cb_live_...")

token, _ := client.Solve(capbypass.Task{
    Type: "ReCaptchaV3Task",
    WebsiteURL: "https://target.com",
    WebsiteKey: "6Le-...abc",
    PageAction: "login",
})
fmt.Println(token) // solved in 430ms
Pricing

reCAPTCHA pricing.

VariantPrice / 1,000ModeStatus
reCAPTCHA v3$0.60Proxy · ProxylessLive
reCAPTCHA v3 Enterprise$2.00Proxy · ProxylessLive
reCAPTCHA v2$0.50Proxy · ProxylessSoon
// Billed per successful solve - failed solves cost nothing.All pricing
Other solvers
FAQ
Which reCAPTCHA versions do you solve?+
reCAPTCHA v3, including Enterprise, is live today. reCAPTCHA v2 (checkbox and invisible) is shipping soon. One integration covers all of them.
Do v3 tokens come back with a good score?+
Yes - we generate high-score v3 tokens. Pass the pageAction from your grecaptcha.execute() call so the token matches the expected action.
Is reCAPTCHA Enterprise supported?+
Yes. Use the Enterprise task type and pass an optional enterprisePayload for any extra grecaptcha.enterprise.execute() options.
Do I need to send a proxy?+
No for the ProxyLess task types - they run on our infrastructure. The standard types let you pass your own proxy for geo-sensitive targets.