Reference

API Endpoint Mapping: CaptchaAI vs Competitors

Switching CAPTCHA solving providers shouldn't require rewriting your integration. This reference maps CaptchaAI's API endpoints, parameters, and responses against 2Captcha, Anti-Captcha, and CapMonster Cloud — so you know exactly what to change.


Base URLs

Provider Submit endpoint Result endpoint
CaptchaAI https://ocr.captchaai.com/in.php https://ocr.captchaai.com/res.php
2Captcha https://2captcha.com/in.php https://2captcha.com/res.php
Anti-Captcha https://api.anti-captcha.com/createTask https://api.anti-captcha.com/getTaskResult
CapMonster Cloud https://api.capmonster.cloud/createTask https://api.capmonster.cloud/getTaskResult

CaptchaAI uses the same URL structure as 2Captcha. Migrating from 2Captcha requires only changing the domain.


API style

Provider API style Content type Auth
CaptchaAI Form/query params application/x-www-form-urlencoded key param
2Captcha Form/query params application/x-www-form-urlencoded key param
Anti-Captcha JSON body application/json clientKey in body
CapMonster Cloud JSON body application/json clientKey in body

reCAPTCHA v2

CaptchaAI / 2Captcha

POST /in.php
  key=API_KEY
  method=userrecaptcha
  googlekey=SITE_KEY
  pageurl=PAGE_URL
  json=1

Anti-Captcha / CapMonster

POST /createTask
{
  "clientKey": "API_KEY",
  "task": {
    "type": "RecaptchaV2TaskProxyless",
    "websiteURL": "PAGE_URL",
    "websiteKey": "SITE_KEY"
  }
}

Parameter mapping

CaptchaAI Anti-Captcha/CapMonster Description
key clientKey API key
method=userrecaptcha type=RecaptchaV2TaskProxyless Task type
googlekey websiteKey reCAPTCHA sitekey
pageurl websiteURL Target page URL
invisible=1 isInvisible: true Invisible reCAPTCHA
enterprise=1 type=RecaptchaV2EnterpriseTaskProxyless Enterprise flag

reCAPTCHA v3

CaptchaAI / 2Captcha

POST /in.php
  key=API_KEY
  method=userrecaptcha
  googlekey=SITE_KEY
  pageurl=PAGE_URL
  version=v3
  action=verify
  min_score=0.7

Anti-Captcha / CapMonster

{
  "clientKey": "API_KEY",
  "task": {
    "type": "RecaptchaV3TaskProxyless",
    "websiteURL": "PAGE_URL",
    "websiteKey": "SITE_KEY",
    "minScore": 0.7,
    "pageAction": "verify"
  }
}

Cloudflare Turnstile

CaptchaAI

POST /in.php
  key=API_KEY
  method=turnstile
  sitekey=SITE_KEY
  pageurl=PAGE_URL

Anti-Captcha

{
  "clientKey": "API_KEY",
  "task": {
    "type": "TurnstileTaskProxyless",
    "websiteURL": "PAGE_URL",
    "websiteKey": "SITE_KEY"
  }
}

hCaptcha

CaptchaAI / 2Captcha

POST /in.php
  key=API_KEY
  method=hcaptcha
  sitekey=SITE_KEY
  pageurl=PAGE_URL

Anti-Captcha

{
  "clientKey": "API_KEY",
  "task": {
    "type": "HCaptchaTaskProxyless",
    "websiteURL": "PAGE_URL",
    "websiteKey": "SITE_KEY"
  }
}

GeeTest v3

CaptchaAI / 2Captcha

POST /in.php
  key=API_KEY
  method=geetest
  gt=GT_VALUE
  challenge=CHALLENGE_VALUE
  pageurl=PAGE_URL

Anti-Captcha

{
  "clientKey": "API_KEY",
  "task": {
    "type": "GeeTestTaskProxyless",
    "websiteURL": "PAGE_URL",
    "gt": "GT_VALUE",
    "challenge": "CHALLENGE_VALUE"
  }
}

Image CAPTCHA

CaptchaAI / 2Captcha

POST /in.php
  key=API_KEY
  method=base64
  body=BASE64_IMAGE

Anti-Captcha

{
  "clientKey": "API_KEY",
  "task": {
    "type": "ImageToTextTask",
    "body": "BASE64_IMAGE"
  }
}

Polling for results

CaptchaAI / 2Captcha

GET /res.php?key=API_KEY&action=get&id=TASK_ID&json=1

Response: {"status":1,"request":"TOKEN"}
Not ready: {"status":0,"request":"CAPCHA_NOT_READY"}

Anti-Captcha / CapMonster

POST /getTaskResult
{
  "clientKey": "API_KEY",
  "taskId": 123456
}

Response: {"status":"ready","solution":{"gRecaptchaResponse":"TOKEN"}}
Not ready: {"status":"processing"}

Balance check

Provider Endpoint Response
CaptchaAI GET /res.php?key=KEY&action=getbalance 12.345
2Captcha GET /res.php?key=KEY&action=getbalance 12.345
Anti-Captcha POST /getBalance {"clientKey":"KEY"} {"balance":12.345}
CapMonster POST /getBalance {"clientKey":"KEY"} {"balance":12.345}

Error codes

Scenario CaptchaAI / 2Captcha Anti-Captcha
Wrong API key ERROR_WRONG_USER_KEY ERROR_KEY_DOES_NOT_EXIST
Zero balance ERROR_ZERO_BALANCE ERROR_ZERO_BALANCE
Bad sitekey ERROR_WRONG_GOOGLEKEY ERROR_RECAPTCHA_INVALID_SITEKEY
Not ready CAPCHA_NOT_READY status: "processing"
Rate limited ERROR_TOO_MUCH_REQUESTS ERROR_TOO_MUCH_REQUESTS

Migration checklist

  • [ ] Change base URL to ocr.captchaai.com
  • [ ] Update API key
  • [ ] If migrating from Anti-Captcha/CapMonster: convert JSON body to form params
  • [ ] Replace clientKey with key
  • [ ] Replace task type with method
  • [ ] Update polling to use GET instead of POST (if from Anti-Captcha)
  • [ ] Test with a single task before full migration

FAQ

Is CaptchaAI a drop-in replacement for 2Captcha?

Nearly. Change 2captcha.com to ocr.captchaai.com in your base URL and update your API key. The parameter names and response format are identical.

Do existing 2Captcha libraries work with CaptchaAI?

Yes. Most 2Captcha client libraries let you override the base URL. Set it to https://ocr.captchaai.com and they work without code changes.


Switch to CaptchaAI with minimal code changes

Get your API key at captchaai.com.


Discussions (0)

No comments yet.

Related Posts

Comparisons Free vs Paid CAPTCHA Solvers: What You Need to Know
Compare free and paid CAPTCHA solving tools — browser extensions, open-source solvers, and API services — covering reliability, speed, type support, and cost.

Compare free and paid CAPTCHA solving tools — browser extensions, open-source solvers, and API services — cove...

Automation All CAPTCHA Types Migration
Jan 23, 2026
Comparisons ScrapingBee vs Building with CaptchaAI: When to Use Which
Compare Scraping Bee's -in-one scraping API with building your own solution using Captcha AI.

Compare Scraping Bee's all-in-one scraping API with building your own solution using Captcha AI. Cost, flexibi...

Python All CAPTCHA Types Web Scraping
Mar 16, 2026
Reference Cost Comparison Calculator: CaptchaAI vs Top 5 Competitors
Compare CAPTCHA solving costs across Captcha AI and the top 5 competitors — pricing tables, cost-per-solve calculations, and a usage-based comparison framework.

Compare CAPTCHA solving costs across Captcha AI and the top 5 competitors — pricing tables, cost-per-solve cal...

All CAPTCHA Types Migration
Mar 17, 2026
Comparisons Migrate from Anti-Captcha to CaptchaAI Step by Step
Step-by-step guide to migrate from Anti-Captcha's custom JSON API to Captcha AI's 2 Captcha-compatible format.

Step-by-step guide to migrate from Anti-Captcha's custom JSON API to Captcha AI's 2 Captcha-compatible format....

Automation Python All CAPTCHA Types
Mar 16, 2026
Comparisons CaptchaAI vs NextCaptcha: API and Pricing Comparison
Compare Captcha AI and Next Captcha on API features, pricing, supported CAPTCHA types, and performance benchmarks.

Compare Captcha AI and Next Captcha on API features, pricing, supported CAPTCHA types, and performance benchma...

Python All CAPTCHA Types Migration
Jan 18, 2026
Comparisons CaptchaAI vs DeathByCaptcha: Full Comparison
Compare Captcha AI and Death By Captcha on pricing, speed, CAPTCHA type coverage, API design, and modern feature support.

Compare Captcha AI and Death By Captcha on pricing, speed, CAPTCHA type coverage, API design, and modern featu...

Automation All CAPTCHA Types Migration
Mar 22, 2026
Comparisons CaptchaAI vs Anti-Captcha: Full Comparison
Detailed comparison of Captcha AI and Anti-Captcha covering pricing, speed, API design, CAPTCHA type support, and integration effort.

Detailed comparison of Captcha AI and Anti-Captcha covering pricing, speed, API design, CAPTCHA type support,...

Automation All CAPTCHA Types Migration
Mar 17, 2026
Comparisons CaptchaAI vs CapMonster Cloud: Complete Feature Comparison
Detailed comparison of Captcha AI and Cap Monster Cloud covering features, pricing, success rates, and supported CAPTCHA types.

Detailed comparison of Captcha AI and Cap Monster Cloud covering features, pricing, success rates, and support...

Python All CAPTCHA Types Migration
Jan 22, 2026
Comparisons CaptchaAI vs SadCaptcha: Feature and Pricing Comparison
Compare Captcha AI and Sad Captcha across CAPTCHA types — features, pricing, API design, supported solvers, speed, and integration patterns for developers choos...

Compare Captcha AI and Sad Captcha across all CAPTCHA types — features, pricing, API design, supported solvers...

Python All CAPTCHA Types Migration
Jan 15, 2026
Comparisons Token-Based vs Cookie-Based CAPTCHA Solving
Understand the difference between token-based and cookie-based CAPTCHA solving — when to use each approach, how they work, and implementation examples.

Understand the difference between token-based and cookie-based CAPTCHA solving — when to use each approach, ho...

Automation Python All CAPTCHA Types
Jan 25, 2026
Reference CAPTCHA Token Injection Methods Reference
Complete reference for injecting solved CAPTCHA tokens into web pages.

Complete reference for injecting solved CAPTCHA tokens into web pages. Covers re CAPTCHA, Turnstile, and Cloud...

Automation Python reCAPTCHA v2
Apr 08, 2026
Reference Browser Session Persistence for CAPTCHA Workflows
Manage browser sessions, cookies, and storage across CAPTCHA-solving runs to reduce repeat challenges and maintain authenticated state.

Manage browser sessions, cookies, and storage across CAPTCHA-solving runs to reduce repeat challenges and main...

Automation Python reCAPTCHA v2
Feb 24, 2026
Reference CaptchaAI CLI Tool: Command-Line CAPTCHA Solving and Testing
A reference for building and using a Captcha AI command-line tool — solve CAPTCHAs, check balance, test parameters, and integrate with shell scripts and CI/CD p...

A reference for building and using a Captcha AI command-line tool — solve CAPTCHAs, check balance, test parame...

Automation Python All CAPTCHA Types
Feb 26, 2026