Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Data Enrichment / 2Captcha API
2Captcha API logo

2Captcha API

★ Only Publicly Available OpenAPI DocumentData EnrichmentData TransformationapiKey5 EndpointsREST

For Agents

Solve reCAPTCHA, hCaptcha, Cloudflare Turnstile, and image captchas on behalf of a workflow by submitting a task and polling for the solution token.

Use for: I need to solve a reCAPTCHA v2 challenge so my scraper can submit a form, Solve a Cloudflare Turnstile token for a protected login page, Get the result of a captcha task I submitted a few seconds ago, Check the remaining 2Captcha account balance before queuing more tasks

Not supported: Does not scrape pages, render JavaScript, rotate proxies, or verify captchas on your own site — use for solving third-party captcha challenges only.

Jentic publishes the only available OpenAPI specification for 2Captcha API, keeping it validated and agent-ready. 2Captcha is a captcha-solving service that resolves reCAPTCHA v2 and v3, hCaptcha, Cloudflare Turnstile, image-to-text, FunCaptcha, and other challenge types through a small task-based REST API. Agents submit a task with the captcha parameters, poll for the solved token or text, and then use that token to complete the protected form or API request. The service also exposes account balance lookups and a reporting endpoint for grading good and bad solutions, which feeds back into solver accuracy.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the 2Captcha API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the 2Captcha API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with 2Captcha API.

Submit reCAPTCHA v2, reCAPTCHA v3, hCaptcha, and Cloudflare Turnstile tasks for human or AI-assisted solving

Solve image-to-text and FunCaptcha challenges encountered while scraping or automating browser flows

Poll task status and retrieve the resulting captcha token, gRecaptchaResponse, or text answer once ready

Check the prepaid account balance before queuing a batch of expensive captcha types

Report incorrectly solved tasks to receive a refund and improve the worker pool's accuracy

Receive solved captcha results via a callbackUrl webhook instead of polling getTaskResult

Use Cases

Patterns agents use 2Captcha API for, with concrete tasks.

★ Web Scraping Behind reCAPTCHA

Scrapers and data-collection agents frequently hit reCAPTCHA v2 or v3 challenges when fetching pricing, listings, or public records. With the 2Captcha API the agent posts the site key and page URL to /createTask using a RecaptchaV2TaskProxyless task, polls /getTaskResult every few seconds until the status is ready, and injects the returned gRecaptchaResponse token into the target form. Solving typically completes in 15-45 seconds depending on captcha type and load.

Call /createTask with a RecaptchaV2TaskProxyless task containing the websiteURL and websiteKey, poll /getTaskResult until status is 'ready', and return the gRecaptchaResponse token to the calling scraper

Automated Account Sign-Up Flows

QA agents and onboarding bots that create test accounts on third-party services often need to clear an hCaptcha or Turnstile challenge during sign-up. 2Captcha accepts a HCaptchaTaskProxyless or TurnstileTaskProxyless task with the page URL and site key, returns a token via /getTaskResult, and the agent submits the registration form with that token attached. End-to-end the captcha step usually adds under a minute to the sign-up flow.

Submit a TurnstileTaskProxyless task to /createTask with the registration page URL and Turnstile sitekey, then poll /getTaskResult and return the resulting token to the sign-up form handler

Cost Control and Accuracy Feedback

Operations teams running large captcha-solving workloads need to monitor spend and prune incorrect solutions. /getBalance returns the current prepaid balance so an agent can throttle or pause submissions when funds run low, and /reportIncorrect refunds the cost of solutions that did not work on the target site, which also signals the worker pool to retrain. Together these two endpoints let an agent close the loop on cost and quality without leaving the API.

Call /getBalance and if the value is below 1.0 USD send an alert; for any solution that failed on the target site, call /reportIncorrect with the original taskId to claim a refund

AI Agent Captcha Resolver via Jentic

An AI agent driving a browser or HTTP workflow through Jentic can treat 2Captcha as a drop-in captcha resolver. The agent searches Jentic for 'solve a captcha', loads the createTask schema, executes the call with the site key and URL it scraped from the page, then loads getTaskResult and polls until ready. The 2Captcha API key lives in the Jentic vault, so the agent never sees the raw clientKey value — Jentic injects it into the request at execution time.

Search Jentic for 'solve a captcha', load the 2captcha createTask and getTaskResult operations, submit the captcha task, and poll until the solution token is returned

Key Endpoints

5 endpoints — jentic publishes the only available openapi specification for 2captcha api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

POST

/createTask

Create a captcha solving task

POST

/getTaskResult

Poll for the result of a submitted task

POST

/getBalance

Get the current account balance

POST

/reportCorrect

Report a correctly solved task

POST

/reportIncorrect

Report an incorrectly solved task and request a refund

POST

/createTask

Create a captcha solving task

POST

/getTaskResult

Poll for the result of a submitted task

POST

/getBalance

Get the current account balance

POST

/reportCorrect

Report a correctly solved task

POST

/reportIncorrect

Report an incorrectly solved task and request a refund

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

Your 2Captcha client key is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'solve a recaptcha' or 'get a captcha result', and Jentic returns the matching 2Captcha operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Time to first call

Time to first call

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Anti-Captcha API

→

Direct competitor with a near-identical createTask / getTaskResult flow.

Choose Anti-Captcha if 2Captcha is rate-limiting or pricing has shifted; the task payloads are interchangeable for most reCAPTCHA and hCaptcha types.

Complementary

hCaptcha API

→

Issuer side of the hCaptcha challenges that 2Captcha solves.

Use hCaptcha's own API when you are protecting your site and need to verify tokens; use 2Captcha when you need to solve someone else's hCaptcha during scraping or automation.

Complementary

ScraperAPI

→

Proxy-rotating scraping API that pairs with 2Captcha when scraping protected pages.

Pair ScraperAPI for IP rotation and JS rendering with 2Captcha for the captcha step when a target site has both anti-bot proxies and captcha challenges.

Complementary

Browserless

→

Headless Chrome as a service for automating the browser flow that hits the captcha.

Use Browserless to drive the page that produces the captcha, hand the site key to 2Captcha, then inject the returned token back into the Browserless session.

FAQs

Specific to using 2Captcha API through Jentic.

Why is there no official OpenAPI spec for 2Captcha API?

2Captcha does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call 2Captcha API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.

What authentication does the 2Captcha API use?

The 2Captcha API uses an API key passed as the clientKey field in the JSON body of every request, not as a header. There is no OAuth or bearer token. Through Jentic the clientKey is stored encrypted in the MAXsystem vault and injected into the request at execution time, so the agent never sees the raw key value.

Can I solve reCAPTCHA v3 with the 2Captcha API?

Yes. Submit a RecaptchaV3TaskProxyless task to /createTask with the websiteURL, websiteKey, the action name, and your minimum acceptable score (typically 0.3 or 0.7), then poll /getTaskResult until status is 'ready' to retrieve the gRecaptchaResponse token. The same five-endpoint flow handles reCAPTCHA v2, hCaptcha, Turnstile, and image captchas — only the task type changes.

How do I poll for a captcha solution through Jentic?

Use Jentic's search to find the operation ('solve a captcha' or 'get captcha result'), load the getTaskResult schema, then execute it with the taskId returned from createTask. 2Captcha's docs recommend a first poll after about 5 seconds and additional polls every 5 seconds until the response status field is 'ready', at which point the solution field contains the token or text.

What are the rate limits for the 2Captcha API?

The OpenAPI spec does not declare numeric rate limits. In practice 2Captcha throttles by account: getTaskResult should be polled no more often than every 5 seconds per task, and very high createTask submission rates may be slowed under heavy load. Concurrency limits depend on your account tier — check your dashboard for the current cap.

How do I get a refund for a bad captcha solution?

Call /reportIncorrect with the taskId of the solution that did not work on the target site. 2Captcha will refund the cost of that task and feed the signal back to the worker pool. Report only solutions that genuinely failed — abusing reportIncorrect can lead to account restrictions.

Is the 2Captcha API free?

No. 2Captcha is a prepaid service — you top up a balance and each solved captcha deducts a small amount (rates vary by task type, with image captchas cheapest and reCAPTCHA / hCaptcha more expensive). Use /getBalance to read the current balance from your code so you can gate submissions when funds run low.

GET STARTED

Start building with 2Captcha API

Explore with Jentic
View OpenAPI Document