Discover/NopeCHA API
live

NopeCHA APInopecha.com

Access NopeCHA's CAPTCHA solving endpoints: submit reCAPTCHA recognition jobs, generate bypass tokens, poll results, and retrieve account status and system metrics.

Endpoint health
verified 4d ago
get_api_key_status
get_system_metrics
get_pricing_plans
3/3 passing latest checkself-healing
Endpoints
8
Updated
26d ago

What is the NopeCHA API?

The NopeCHA API exposes 8 endpoints covering CAPTCHA image recognition, token generation, account management, and live system metrics. Use submit_recaptcha_recognition to post a base64-encoded reCAPTCHA image with a task instruction and grid size, then poll retrieve_recaptcha_recognition with the returned job ID to get the selected tile indices. Separate endpoints handle reCAPTCHA v2 token generation, API key credit checks, event history, and subscription plan details.

Try it
NopeCHA API key to check status for. If omitted, returns the free-tier status associated with the current visitor IP.
api.parse.bot/scraper/a78ca28c-fef2-401d-b1c4-d9750d8fead8/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/a78ca28c-fef2-401d-b1c4-d9750d8fead8/get_api_key_status' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace nopecha-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.


"""NopeCHA API — check service status, metrics, and pricing plans."""
from parse_apis.nopecha_api import NopeCHA, Plan, Metric, Status, NotFoundError

client = NopeCHA()

# Check the free-tier API key status (no key needed)
status = client.statuses.get()
print(f"Plan: {status.plan}, Credit: {status.credit}/{status.quota}, Status: {status.status}")

# Retrieve real-time system metrics
metrics = client.metrics.get()
print(f"Users: {metrics.nusers}, Online: {metrics.nonline}")
print(f"Avg solve: {metrics.avg_solve_duration}s, reCAPTCHA: {metrics.recaptcha_solve_duration}s")

# List all subscription plans
for plan in client.plans.list(limit=10):
    print(f"{plan.name}: {plan.price} — {plan.quota}, features: {plan.features}")

# Demonstrate error handling on status lookup with an invalid key
try:
    bad_status = client.statuses.get(api_key="invalid_key_12345")
    print(f"Got status: {bad_status.plan}")
except NotFoundError as exc:
    print(f"Key not found: {exc}")

print("Exercised: statuses.get / metrics.get / plans.list")
All endpoints · 8 totalmissing one? ·

Retrieve API key status including remaining credit balance, quota, and subscription plan. When no API key is provided, returns the free-tier allocation associated with the current visitor IP.

Input
ParamTypeDescription
api_keystringNopeCHA API key to check status for. If omitted, returns the free-tier status associated with the current visitor IP.
Response
{
  "type": "object",
  "fields": {
    "plan": "string indicating subscription tier name (e.g. Free, Starter, Basic)",
    "quota": "integer daily quota limit",
    "credit": "integer remaining credits for the current period",
    "status": "string indicating account status (e.g. Active)",
    "duration": "integer seconds until quota reset",
    "lastreset": "integer Unix timestamp of last quota reset"
  },
  "sample": {
    "data": {
      "plan": "Free",
      "quota": 100,
      "credit": 100,
      "status": "Active",
      "duration": 82800,
      "lastreset": 1781256367
    },
    "status": "success"
  }
}

About the NopeCHA API

CAPTCHA Recognition and Token Generation

Two submit/retrieve pairs handle the core CAPTCHA work. submit_recaptcha_recognition accepts a base64-encoded image or URL via image_data, a task string (the challenge prompt, e.g. "Select all squares with traffic lights"), an optional grid parameter (3x3 or 4x4), and an optional api_key. It returns a data string containing the job ID. You then call retrieve_recaptcha_recognition with that job_id to get back a data array of tile selections.

For full token generation, submit_recaptcha_v2_token takes a url (the target page), a sitekey, and an optional data JSON string for parameters like the s value or enterprise flags. The companion retrieve_recaptcha_v2_token returns a data string containing the solved token, ready to be submitted to the target form.

Account Status and Usage Events

get_api_key_status returns the plan name, integer quota (daily limit), integer credit (remaining for the current period), status string, duration in seconds until the next quota reset, and a lastreset Unix timestamp. If no api_key is supplied, the response reflects the free-tier allocation tied to the caller's IP. get_api_key_events returns an events array of recent job activity; the optional n parameter caps how many events come back.

System Metrics and Pricing Plans

get_system_metrics is a zero-input endpoint that returns live platform stats: nusers (total registered users), nonline (currently online users), and average solve durations broken out as captcha.recog.solveduration, captcha.recog.hcaptcha.solveduration, and captcha.recog.recaptcha.solveduration in seconds. get_pricing_plans returns an array of plan objects, each with name, price, quota, and features, giving a programmatic view of available subscription tiers without hitting the marketing site.

Reliability & maintenanceVerified

The NopeCHA API is a managed, monitored endpoint for nopecha.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when nopecha.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official nopecha.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Automate reCAPTCHA v2 solving in browser automation pipelines using submit_recaptcha_v2_token and retrieve_recaptcha_v2_token.
  • Monitor NopeCHA account credit consumption and quota reset timing via get_api_key_status to avoid mid-run failures.
  • Log job-level activity by pulling get_api_key_events with a capped n value for auditing or debugging.
  • Compare live hCaptcha vs. reCAPTCHA average solve durations from get_system_metrics to time-budget scraping workflows.
  • Programmatically fetch current subscription plan options via get_pricing_plans to display or compare tiers in a dashboard.
  • Submit image-grid recognition tasks with submit_recaptcha_recognition specifying 3x3 or 4x4 grid and a natural-language task prompt.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does NopeCHA have an official developer API?+
Yes. NopeCHA publishes an official API documented at https://nopecha.com/api. The Parse endpoints surface the same capabilities — account status, CAPTCHA submission, token retrieval, and system metrics — in a normalized interface.
What does `get_api_key_status` return when no API key is provided?+
When api_key is omitted, the endpoint returns the free-tier allocation associated with the calling IP address. The response still includes plan, quota, credit, status, duration (seconds to next reset), and lastreset (Unix timestamp), so the shape is identical to an authenticated key check.
Does the API support hCaptcha token generation, not just image recognition?+
The current endpoints cover reCAPTCHA v2 token generation and reCAPTCHA image recognition. hCaptcha appears only in the system metrics field captcha.recog.hcaptcha.solveduration; there is no dedicated hCaptcha token submission endpoint here. You can fork this API on Parse and revise it to add an hCaptcha token submission and retrieval endpoint.
How granular is the `get_api_key_events` response?+
The endpoint returns an array of recent job events for the given key. The n parameter limits how many events are returned, but the response schema does not expose per-event fields like solve duration, CAPTCHA type, or success/failure status beyond the raw array. If you need filtered or aggregated event data, you can fork the API on Parse and revise it to add filtering parameters.
Does the API cover reCAPTCHA v3 or enterprise token generation?+
There is no dedicated reCAPTCHA v3 endpoint. The submit_recaptcha_v2_token endpoint accepts an optional data JSON string that can include an enterprise flag, but v3-specific score-based solving is not a separate endpoint in this API. You can fork it on Parse and revise to add a dedicated reCAPTCHA v3 submission endpoint.
Page content last updated . Spec covers 8 endpoints from nopecha.com.
Related APIs in Developer ToolsSee all →
codechef.com API
Access competitive programming data from CodeChef by retrieving problem lists, contest information with details, user profiles, and recent submission history. Explore coding challenges across multiple contests and browse problems by difficulty rating.
nowpayments.io API
Accept cryptocurrency payments and create invoices with real-time price estimation across multiple currencies. Check payment status, retrieve transaction details, and query account balances through a single integration.
chirojobs.com API
Search and browse chiropractic job listings with detailed information, explore job categories, and access ChiroJobs blog content and pricing—all in one place. Find related positions, compare opportunities, and stay informed with the latest industry insights.
developers.openai.com API
Check current pricing for all OpenAI models including GPT, image generation, audio, video, embeddings, and fine-tuning across different pricing tiers like Batch, Flex, Standard, and Priority. Get real-time cost information to compare rates and plan your API spending.
cryptopanic.com API
Access real-time cryptocurrency market sentiment data from CryptoPanic. Retrieve news posts filtered by bullish or bearish sentiment, browse the full news feed with flexible filters, and fetch an aggregated sentiment score derived from 24-hour price movements across top cryptocurrencies.
crash.pmmp.io API
Search and browse crash reports for PocketMine-MP, view detailed information about specific crashes, and submit new crash reports to the archive. Keep your server stable by accessing a centralized database of known issues and their solutions.
toolify.ai API
Search and browse premium .ai domain names available on the Toolify marketplace, filtering by keywords, categories, prices, and domain attributes to find the perfect domain for your project. Explore curated domain listings organized by category to discover valuable .ai domains suited to your needs.
gamma.app API
Create AI-powered presentations, documents, and webpages from scratch or templates, check generation progress, download completed exports, and manage workspace settings like themes and folders. Access everything through Gamma.app's platform with a valid API key.