LaunchKit · 2026
Back to Skills

2captcha

Solve CAPTCHAs using 2Captcha service.

0
3.7k downloads
by @adinvadim

Setup & Installation

openclaw skills install @adinvadim/2captcha

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install 2captcha

What This Skill Does

A CLI tool that submits CAPTCHAs to the 2Captcha human-powered solving service and returns tokens ready to inject into a target page. Supports image CAPTCHAs, reCAPTCHA v2/v3, hCaptcha, Cloudflare Turnstile, FunCaptcha, and GeeTest. Solving takes 10-60 seconds depending on type.

Using a human-powered solving service via CLI avoids maintaining ML-based solvers or browser extensions that break when CAPTCHA providers update their challenge formats.

When to use it

  • Automating form submissions blocked by reCAPTCHA
  • Scraping sites protected by hCaptcha or Cloudflare Turnstile
  • Testing CAPTCHA-gated registration and login flows in CI pipelines
  • Batch account creation on sites with CAPTCHA gates
  • Unblocking browser automation scripts that stall on CAPTCHA challenges

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: automate a reCAPTCHA v2 registration form submission

AGENT
  1. 1Inspect page HTML to locate the data-sitekey attribute in the reCAPTCHA widget
  2. 2Call solve-captcha recaptcha2 with the extracted sitekey and page URL
  3. 3Wait for the returned token (10-60 seconds)
  4. 4Inject the token into the g-recaptcha-response hidden field
  5. 5Submit the form programmatically
OUTPUT

Form submitted with a valid CAPTCHA token accepted by the target site

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

2Captcha account with prepaid balance (paid per solve, sign up at 2captcha.com)2Captcha API key (stored in ~/.config/2captcha/api-key or TWOCAPTCHA_API_KEY env var)solve-captcha CLI binary (installed via curl from GitHub, non-standard tool)