← GateSolve

reCAPTCHA Solver API

Solve Google reCAPTCHA v2, v3, and invisible reCAPTCHA programmatically. Built for AI agents and automation pipelines. 100 free solves, no credit card.

Supported reCAPTCHA Types

reCAPTCHA v2

The classic checkbox challenge. Our solver clicks the checkbox and completes image challenges in a real browser environment.

reCAPTCHA v3

Score-based invisible reCAPTCHA. We generate high-trust scores by simulating real user behavior patterns in Camoufox.

Invisible reCAPTCHA

Hidden challenges that trigger on form submit. Our solver handles the background verification without any user interaction needed.

How It Works

1

Submit

POST the target URL and reCAPTCHA siteKey to our API. Specify v2, v3, or invisible. Get back a solve ID instantly.

2

Solve

Our Camoufox solver loads the page in a real Firefox-based browser, passes fingerprint checks, and completes the reCAPTCHA challenge.

3

Get Token

Poll for the result or receive it via webhook callback. Use the g-recaptcha-response token in your form submissions.

Solve reCAPTCHA in Python

from gatesolve import GateSolve

client = GateSolve(api_key="gs_your_key")

# reCAPTCHA v2
token = client.solve(
    "recaptcha-v2",
    site_key="6Le-wvkS...",
    page_url="https://example.com/login"
)

# reCAPTCHA v3
token = client.solve(
    "recaptcha-v3",
    site_key="6LdyC2c...",
    page_url="https://example.com",
    action="submit",
    min_score=0.7
)

Install: pip install gatesolve

REST API

Submit reCAPTCHA v2

curl -X POST https://gatesolve.dev/api/solve \
  -H "Authorization: Bearer gs_your_key" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "recaptcha-v2",
    "siteKey": "6Le-wvkS...",
    "pageUrl": "https://example.com/login"
  }'

Submit reCAPTCHA v3

curl -X POST https://gatesolve.dev/api/solve \
  -H "Authorization: Bearer gs_your_key" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "recaptcha-v3",
    "siteKey": "6LdyC2c...",
    "pageUrl": "https://example.com",
    "action": "submit",
    "minScore": 0.7
  }'

Poll for Result

curl https://gatesolve.dev/api/solve?id=<solve_id>

# Response:
{
  "id": "abc123",
  "status": "solved",
  "token": "03AGdBq25...",
  "solvedIn": "15.2s"
}

Why GateSolve for reCAPTCHA

100 Free Solves

No credit card required. Sign up with email and start solving immediately.

Real Browser Solving

Camoufox (Firefox fork) passes fingerprint checks that Puppeteer and Playwright fail.

All reCAPTCHA Types

v2 checkbox, v2 invisible, v3 score-based. One API for all variants.

Python SDK

pip install gatesolve — solve reCAPTCHA in three lines of code.

MCP Server

Works with Claude, GPT, and any MCP-compatible AI agent framework.

Framework Plugins

Drop-in plugins for Playwright, Puppeteer, and Selenium.

Webhook Callbacks

Get results POSTed to your endpoint. No polling required.

2captcha Fallback

Automatic fallback to residential proxy network for high-security sites.

GateSolve vs Other reCAPTCHA Solvers

FeatureGateSolve2CaptchaCapSolver
Free Tier100 solves freeNoNo
reCAPTCHA v2 Price$0.03/solve$1.00/1K$0.80/1K
reCAPTCHA v3 Price$0.03/solve$1.45/1K$1.50/1K
Signup RequiredEmail onlyEmail + depositEmail + deposit
MCP ServerYesYes (new)No
Python SDKpip install gatesolvepip install 2captcha-pythonpip install capsolver
Webhook CallbacksYesNoNo

Frequently Asked Questions

How fast is reCAPTCHA solving?

reCAPTCHA v2 typically solves in 10-20 seconds. v3 score generation takes 8-15 seconds. Webhook callbacks eliminate polling overhead.

Does it work with invisible reCAPTCHA?

Yes. Submit with type 'recaptcha-v2' and set invisible: true. The solver handles the background challenge automatically.

What success rate should I expect?

reCAPTCHA v2: 85-95% depending on site difficulty. v3: scores of 0.7+ on most sites. Failed solves are not charged.

Can I use this with AI agents?

Yes. GateSolve is built for agents. Use our MCP server (npx @gatesolve/mcp-server) or Python SDK. Agents can sign up, get keys, and solve CAPTCHAs autonomously.

Start Solving reCAPTCHA Today

100 free solves. No credit card. Works with v2, v3, and invisible.

Join Waitlist →