DeathByCaptcha is a professional bypass captcha service trusted by developers, automation engineers, and researchers worldwide since 2010. Our platform acts as a captcha solver for bots and automated workflows, providing a fast, reliable, and accurate CAPTCHA-solving API over both HTTP and persistent TCP sockets.
- β 21+ CAPTCHA types supported β image, reCAPTCHA v2/v3, Turnstile, Amazon WAF, GeeTest, hCaptcha, and more
- β HTTP & Socket API β choose the transport that fits your use case
- β Official client libraries in 9+ languages β drop-in, production-ready
- β 24/7 human & automated solving β sub-15-second average response time
- β Token-based auth for CI/CD and headless environments
- β 99.9% uptime SLA and battle-tested in high-volume production workloads
| Language | Repository | Install | Docs |
|---|---|---|---|
Python |
deathbycaptcha-api-client-python | pip install deathbycaptcha |
README |
Go |
deathbycaptcha-api-client-go | go get github.com/deathbycaptcha/deathbycaptcha-api-client-go/v4 |
README |
Node.js |
deathbycaptcha-api-client-nodejs | npm install deathbycaptcha |
README |
PHP |
deathbycaptcha-api-client-php | composer require deathbycaptcha/deathbycaptcha |
README |
Java |
deathbycaptcha-api-client-java | Maven | README |
.Net (C#, VB) |
deathbycaptcha-api-client-dotnet | NuGet package | README |
C++ |
deathbycaptcha-api-client-cpp | CMake | README |
C (C11) |
deathbycaptcha-api-client-c11 | CMake | README |
Perl |
deathbycaptcha-api-client-perl | cpanm --installdeps . |
README |
All libraries implement similar
Clientinterface withHTTPandSockettransports, support authentication viausername/passwordorauthtoken.
| # | Type | Description |
|---|---|---|
| 0 | πΌοΈ Image CAPTCHA | Classic text-in-image challenges |
| 4 | π reCAPTCHA v2 | Google checkbox reCAPTCHA |
| 5 | π reCAPTCHA v3 | Score-based invisible reCAPTCHA |
| 8 | π§© GeeTest v3 | Slide & behavior-based CAPTCHA |
| 9 | π§© GeeTest v4 | Next-gen GeeTest challenges |
| 11 | π TextCaptcha | Text-based question CAPTCHA |
| 12 | βοΈ Cloudflare Turnstile | Cloudflare's privacy-preserving challenge |
| 13 | π΅ Audio Captcha | Voice/audio challenges |
| 14 | π Lemin Cropped | Cropped puzzle CAPTCHA |
| 15 | π§Έ Capy Puzzle | Jigsaw puzzle CAPTCHA |
| 16 | π‘οΈ Amazon WAF | AWS bot protection token |
| 17 | π€ Cyber Siara | Behavioral slide CAPTCHA |
| 18 | π Mtcaptcha | MTCaptcha enterprise challenges |
| 19 | βοΈ Cutcaptcha | Drag & drop image CAPTCHA |
| 20 | π Friendly Captcha | Eco-friendly PoW CAPTCHA |
| 21 | π£ Datadome | DataDome bot protection |
| 23 | π¨π³ Tencent Captcha | Tencent TDC slider |
| 24 | π¦ Atb Captcha | ATB bot challenge |
| 25 | π’ reCAPTCHA v2 Enterprise | Google reCAPTCHA v2 Enterprise |
# Python β solve a reCAPTCHA v2 in 3 lines
import deathbycaptcha
client = deathbycaptcha.HttpClient("your_username", "your_password")
result = client.decode(None, 120, {
"type": "1",
"googlekey": "6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-",
"pageurl": "https://example.com"
})
print(result["text"]) # reCAPTCHA token// Go β bypass captcha service with automatic polling
client := deathbycaptcha.NewHttpClient("your_username", "your_password")
result, _ := client.Decode(nil, 120, map[string]string{
"type": "1",
"googlekey": "6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-",
"pageurl": "https://example.com",
})
fmt.Println(*result.Text) // reCAPTCHA token// Node.js β captcha solver for bots
const dbc = require("deathbycaptcha");
const client = new dbc.HttpClient("your_username", "your_password");
const result = await client.decode(null, 120, {
type: 1,
googlekey: "6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-",
pageurl: "https://example.com",
});
console.log(result.text); // reCAPTCHA tokenYour App βββΊ DBC API (HTTP or Socket) βββΊ Solving Engine βββΊ Token / Text
β² β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
(< 15 sec avg)
- Submit β send the CAPTCHA (image bytes, sitekey + pageurl, or audio)
- Poll β the client automatically polls until the solution is ready
- Use β inject the token or text into your automation
| Resource | Link |
|---|---|
| π Website | https://deathbycaptcha.com |
| π API Documentation | https://deathbycaptcha.com/api |
| π° Pricing | https://deathbycaptcha.com/ |
| π Dashboard / Login | https://deathbycaptcha.com/login#login-form |
| π¬ Contact & Support | https://deathbycaptcha.com/contact |
| π€ AI Agents API Metadata | deathbycaptcha-agent-api-metadata |
