Skip to content

deathbycaptcha/.github

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 

Repository files navigation

DeathByCaptcha

The Professional Bypass Captcha Service & Captcha Solver for Bots

Website API Docs Support Pricing


What is DeathByCaptcha?

DeathByCaptcha.com offers a powerful captcha solver that helps developers efficiently bypass captchas and streamline automation without compromising performance.

It's designed to handle a wide range of challenges, including reCAPTCHA, image-based puzzles, and more. Whether you're building scripts, scraping data, running automated tests, or scaling web-based operations, our captcha solver API delivers fast, accurate, and reliable results.

  • βœ… 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

Official API Client Libraries

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 Client interface with HTTP and Socket transports, support authentication via username/password or authtoken.


Supported CAPTCHA Types

# 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

Quick Start

# 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 token

How It Works

Streamlined CAPTCHA Solving Workflow

DeathByCaptcha's architecture is engineered for high-performance captcha solving with minimal latency. Our API-driven approach simplifies integration across web scraping, automated testing, authentication bypass, and bot automation scenarios.

The Three-Step Process:

  1. Submit Your CAPTCHA β€” Send image bytes, reCAPTCHA sitekey + pageurl, hCaptcha credentials, or any supported challenge type via HTTP or persistent Socket connection
  2. Intelligent Processing β€” Our solving engine processes requests through a hybrid network of 24/7 human solvers and AI-powered automation, delivering results in sub-15 seconds average
  3. Receive Your Token β€” Get the CAPTCHA solution (token, text, or coordinates) and inject directly into your automation workflow
DeathByCaptcha API Architecture - CAPTCHA Solving Process Flow

Why Choose DeathByCaptcha's Solving API:

  • ⚑ Low-latency processing β€” average 8-15 second response time
  • πŸ”„ Automatic polling β€” client libraries handle retry logic
  • πŸ›‘οΈ Enterprise-grade reliability β€” 99.9% uptime SLA
  • 🌍 Global solving network β€” distributed infrastructure for optimal performance
  • πŸ’ͺ 21+ CAPTCHA type support β€” single API for all challenge types

Resources

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

Β© 2010 – 2026 DeathByCaptcha Β· Trusted bypass captcha service for developers worldwide

Python Go Node.js PHP Java .NET C++ C Perl

About

deathbycaptcha official org repo

Resources

Stars

Watchers

Forks

Contributors