Google & Enterprise CAPTCHA

reCAPTCHA v1
Solver API

Solve reCAPTCHA v1 challenges instantly with our AI-powered solver. Submit the challenge, receive a valid solution token in milliseconds — no human intervention required.

✅ 99% Success Rate 🚫 0.2s Latency 🎯 99.8% Accuracy
0.2s
Average Solve Time
99.9%
Success Rate
$0.3/k
Flat Rate Pricing
24/7
Always Online
30+
Global Edge Nodes

What is reCAPTCHAv1?

reCAPTCHA v1 was Google's first-generation CAPTCHA system — introduced in 2009 and widely deployed until its official deprecation in 2018. It presented users with two distorted words: one known to the system (used for verification) and one taken from scanned books (used for crowdsourced digitization).

Despite being deprecated, thousands of legacy web applications, older CMSs, and archival systems still run reCAPTCHA v1. Automating access to these systems requires a reliable solver capable of handling the characteristic noise, rotation, and overlapping characters of v1 challenges.

Distorted text rendering — characters are warped, overlapping, and rendered on noisy backgrounds to resist OCR.
Two-word format — original v1 presents two separate words; only one is the control word used for actual verification.
Legacy API endpoints — uses the old api.recaptcha.net verification flow instead of modern reCAPTCHA infrastructure.
Still active on legacy sites — widely found on older PHP applications, classic WordPress installs, and archived web services.
reCAPTCHA v1

Solve reCAPTCHA v1 in 4 steps

Our API abstracts all the complexity. You send the challenge, we return the answer — in under 200ms.

1
Submit Challenge
POST the reCAPTCHA v1 challenge and your API key to our endpoint via a simple REST call.
2
Request Received
Our infrastructure routes the request to the nearest processing node for lowest latency.
3
AI Solves It
Our dedicated AI model processes the challenge and generates the solution token in ~0.2s.
4
Token Returned
The solved token is returned in the API response. Inject it into the form field and submit.

Integrate in minutes

A single REST endpoint. Works with any language or framework.

Python
Node.js
PHP
cURL
import requests

# FreeCAPTCHA.one — reCAPTCHA v1
url = "https://api.freecaptcha.one/v1/solve"

payload = {
  "api_key": "fc_live_xxxxxxxxxxxxxxxx",
  "page_url": "https://target-site.com/page"
}

response = requests.post(url, json=payload)
data = response.json()

if data["status"] == "solved":
  token = data["solution"]["token"]
  print(f"Solved: {token}")
const axios = require('axios');

// FreeCAPTCHA.one — reCAPTCHA v1
async function solve() {
  const { data } = await axios.post(
    'https://api.freecaptcha.one/v1/solve',
    { api_key: 'fc_live_xxxxxxxxxxxxxxxx', page_url: 'https://target-site.com' }
  );
  if (data.status === 'solved') console.log(data.solution.token);
}
solve();
<?php

// FreeCAPTCHA.one — reCAPTCHA v1
$payload = ['api_key'=>'fc_live_xxxxxxxxxxxxxxxx', 'page_url'=>'https://target-site.com'];
$ch = curl_init('https://api.freecaptcha.one/v1/solve');
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($payload));
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$res = json_decode(curl_exec($ch), true);
echo $res['solution']['token'];
# FreeCAPTCHA.one — reCAPTCHA v1
curl -X POST https://api.freecaptcha.one/v1/solve 
  -H "Content-Type: application/json" 
  -d '{"api_key":"fc_live_xxxxxxxxxxxxxxxx","page_url":"https://target-site.com"}'
API Response 200 OK
{
  "status": "solved",
  "solution": {
    "token": "03AGdBq25k8mTx_sY9vNpZr...",
    "confidence": 0.998,
    "latency_ms": 183
  },
  "credits_used": 1
}

Single Endpoint

One POST /v1/solve call. No SDK required — works with any HTTP client.

Secure API Keys

API keys are scoped, rotatable, and IP-whitelistable. All traffic encrypted over TLS 1.3.

Synchronous Response

Returns in ~0.2s. No polling or webhooks needed — result is in the immediate HTTP response.

Confidence Score

Every response includes a confidence field (0–1). Below 0.90? Request a re-solve at no extra charge.

Failed Solve Protection

Report incorrect solutions via POST /v1/report. Credits refunded automatically — zero risk.

Built for developers & scale

We deliver reliable, high-quality results with a customer-first approach you can trust.

🎯
Specialized AI Model
Our AI model is fine-tuned specifically for reCAPTCHA v1 — outperforming generic solvers with higher accuracy and lower latency.
Specialized AI
0.2s Average Latency
Distributed GPU inference across 30+ global edge nodes ensures sub-200ms solve times regardless of your server location.
Edge Network
🛡️
No-Risk Refunds
You're never charged for failed solves. Report any incorrect response and your credit is refunded automatically.
Zero Risk
📊
Real-Time Dashboard
Monitor solve rates, latency, confidence scores, and credit usage in real time. Export usage reports for any date range.
Live Analytics
🔒
99.99% Uptime SLA
Multi-region redundancy with automatic failover ensures your automation never stops. Backed by service credits if we fall short.
SOC 2 Type II
🔑
Secure API Keys
API keys are scoped, rotatable, and IP-whitelistable. All traffic is encrypted over TLS 1.3. Your credentials are never logged.
TLS 1.3

Who uses our reCAPTCHA v1 solver?

Developers or bot operators use a reCAPTCHA v1 solver to automatically

🔍
Web Scraping & Data Collection
Automate data extraction from websites protected by reCAPTCHA v1. Integrates seamlessly into Selenium, Playwright, and Puppeteer workflows.
🧪
QA & Automated Testing
Test registration flows, login forms, and submission workflows protected by reCAPTCHA v1 without breaking end-to-end test suites.
🔐
Security Research & Audits
Penetration testers and security auditors use our solver to assess the resilience of CAPTCHA implementations.
🔄
Automation Pipelines
Build fully automated workflows that handle CAPTCHA gates without manual intervention — ideal for RPA and scheduled tasks.

Simple, transparent pricing

One flat rate. No tiers, no commitments. Pay only for successful solves.

reCAPTCHA v1
$0.3
/ 1k Solves
0.2s average solve time
99.9% success rate guaranteed
Automatic refund on failed solves
No concurrency limits
99.99% uptime SLA

What our customers say

Reliable reCAPTCHA solver, fast results

★★★★★

"FreeCAPTCHA's solver API cut our automation pipeline setup time in half. The 0.2s latency is genuinely impressive — we've never seen anything close to it."

MT
Marcus T.
Lead DevOps Engineer
★★★★★

"We migrated from a competitor and immediately saw a 12% improvement in solve rate. The automatic refund system means we literally never pay for failures."

PS
Priya S.
Senior Backend Developer
★★★★

"Integration took under 10 minutes. The dashboard is clean, the credits system is transparent, and support responded to our edge case within the hour."

DR
Daniel R.
Automation Engineer

Frequently Asked Questions

Everything you need to know about our reCAPTCHA v1 solver.

💬
Still have questions?

Our solver achieves 99.9% success rate on reCAPTCHA v1 challenges. If a solve fails, you can report it and receive an automatic credit refund.

Average solve time is 0.2 seconds. Responses are returned synchronously — no polling required.

Send a POST request to https://api.freecaptcha.one/v1/solve with your API key, solver type, and challenge parameters.

Report incorrect solutions via POST /v1/report with the task ID. Credits are refunded automatically.

Yes — sign up for free and receive trial credits. No credit card required to start.

Related solvers

Start solving reCAPTCHA v1
for free today.

One API key. $0.3 per 1,000 solves. No contracts, no minimums — just results.