Most CAPTCHA solving services work like a taxi meter — costs tick upward with every solve. As your automation grows, your API bill grows with it, often faster than your revenue.
CaptchaAI works differently. You pay for concurrent capacity (threads), not for volume. This single design decision changes the entire scaling equation.
The core mechanic: threads, not solves
CaptchaAI's plans grant you a number of concurrent solver threads. Each thread can work on exactly one CAPTCHA at a time. The plan cost is fixed — no per-solve charge, no monthly caps.
Scaling rule: Add more threads when your pipeline needs more simultaneous solves. Volume never enters the pricing equation.
Stage 1: The solo project ($15/month — BASIC, 5 threads)
At this stage, a developer is running a personal automation: price alert, RSS scraper, or job board monitor.
| Capacity | Value |
|---|---|
| Threads | 5 |
| reCAPTCHA v2 solves/month | ~1,700,000 (15s each, 5T, 24h) |
| Turnstile solves/month | ~3,900,000 (7s each) |
| Image OCR solves/month | ~86,400,000 (0.5s each) |
The BASIC plan at $15/month provides far more solve capacity than a solo project can use. The bottleneck is never CaptchaAI — it's how fast your scraper generates CAPTCHA encounters.
Typical monthly spend for this stage: $15
Stage 2: The growing startup ($30–$90/month — STANDARD to ADVANCE)
The operation has expanded — multiple targets, scheduled runs, a small team sharing the same automation infrastructure.
| Plan | Threads | Best for |
|---|---|---|
| STANDARD ($30) | 15 | 3–5 concurrent scrapers |
| ADVANCE ($90) | 50 | 10–20 concurrent scrapers or high-volume single job |
At this stage, a per-solve competitor charges based on volume. STANDARD covers 100,000–300,000 reCAPTCHA v2 solves/month. At $2.99/1,000, that's $299–$897 per month vs $30.
Typical monthly spend for this stage: $30–$90
Stage 3: The professional scraping operation ($170–$300/month — PREMIUM to ENTERPRISE)
At this scale, CAPTCHA solving is a core operating cost that appears on the P&L. The team manages dozens of scrapers, geo-distributed proxies, and multiple CAPTCHA types simultaneously.
| Plan | Threads | Approx. capacity (reCAPTCHA v2) |
|---|---|---|
| PREMIUM ($170) | 100 | ~34M solves/month |
| CORPORATE ($240) | 150 | ~51M solves/month |
| ENTERPRISE ($300) | 200 | ~68M solves/month |
What per-solve services charge at 34M solves/month (reCAPTCHA v2 at $2.99/1K): 34,000 × $2.99 = $101,660/month
CaptchaAI PREMIUM: $170/month.
The cost advantage at this stage is not incremental — it's transformational. Operations that are loss-making on per-solve services become profitable on CaptchaAI's model.
Typical monthly spend for this stage: $170–$300
Stage 4: Enterprise and platform-scale ($1,500–$7,500/month — VIP tiers)
VIP plans are for CAPTCHA infrastructure providers, large agency networks, and companies that have made CAPTCHA solving a resellable product or core platform capability.
| Plan | Threads | Approx capacity (reCAPTCHA v2) |
|---|---|---|
| VIP-1 ($1,500) | 1,000 | ~340M solves/month |
| VIP-2 ($4,500) | 3,000 | ~1B+ solves/month |
| VIP-3 ($7,500) | 5,000 | ~1.7B+ solves/month |
At this scale, the comparison breaks down because per-solve services do not have a viable product for these volumes. Providers that charge $2.99/1,000 would price a VIP-3-equivalent customer at:
340M × $2.99/1,000 = $1,017,660/month
CaptchaAI VIP-1: $1,500/month.
Even VIP-3 at $7,500/month represents a cost that is 99.3% lower than the theoretical per-solve equivalent.
Typical monthly spend for this stage: $1,500–$7,500
The scaling cost curve
At per-solve services, your cost grows linearly with solve volume:
Per-solve cost = Volume × rate
At CaptchaAI, your cost grows with concurrent demand — which grows much more slowly than volume:
CaptchaAI cost = f(peak_concurrent_solves)
For most businesses, volume grows while the peak concurrency grows slowly. You may 10× your monthly volume while adding only 2× threads.
Same API, same code throughout
One of the frequently overlooked benefits of CaptchaAI's design: your integration doesn't change as you grow. The same Python snippet that works on BASIC works on VIP-3.
import requests
import time
def solve_captcha(site_key, page_url, api_key):
"""One function, works on every plan from BASIC to VIP-3."""
resp = requests.post("https://ocr.captchaai.com/in.php", data={
"key": api_key,
"method": "userrecaptcha",
"googlekey": site_key,
"pageurl": page_url,
"json": 1,
})
result = resp.json()
if result["status"] != 1:
raise Exception(f"Submit failed: {result['request']}")
task_id = result["request"]
for _ in range(24):
time.sleep(5)
res = requests.get("https://ocr.captchaai.com/res.php", params={
"key": api_key,
"action": "get",
"id": task_id,
"json": 1,
}).json()
if res["status"] == 1:
return res["request"]
if res["request"] != "CAPCHA_NOT_READY":
raise Exception(f"Solve error: {res['request']}")
raise Exception("Timeout")
Growing from BASIC to VIP-3 requires:
- Updating the plan at captchaai.com
- Increasing the concurrency in your scraper framework
- Nothing else
No API migration, no format changes, no integration work.
The annual discount accelerates at scale
CaptchaAI offers 10% off on annual plans. The absolute saving grows with plan size:
| Plan | Monthly | Annual (10% off) | Annual savings |
|---|---|---|---|
| BASIC | $15 | $162 | $18 |
| ENTERPRISE | $300 | $3,240 | $360 |
| VIP-1 | $1,500 | $16,200 | $1,800 |
| VIP-3 | $7,500 | $81,000 | $9,000 |
For high-volume operations already committed to CaptchaAI, the annual plan recovers a full month of service.
FAQ
Can I mix plans? E.g., one team member on BASIC, one on STANDARD? CaptchaAI accounts are individual. Each account has its own thread pool and API key. Teams can operate separate accounts with separate plans, or stack plans for additive threads.
Is there a minimum commitment for VIP plans? VIP plans are typically month-to-month. Contact CaptchaAI sales for custom arrangements and negotiated rates above VIP-3.
What happens if my volume spikes temporarily? Your thread count determines how many can be solved simultaneously. Volume spikes don't increase your cost — but if all threads are occupied, new submissions queue in your own code until a thread frees. Plan for your peak concurrency, not average.
Start at $15, scale to any size
CaptchaAI's model is designed to grow with you without repricing you at every step. See all plans at captchaai.com.
Discussions (0)
Join the conversation
Sign in to share your opinion.
Sign InNo comments yet.