Submit captcha-solving tasks (reCAPTCHA, hCaptcha, Turnstile, image) via MPP-wrapped 2Captcha API.
What it does
This endpoint wraps the 2Captcha captcha-solving service behind the MPP (Micropayment Protocol) on Tempo. The intended use is to submit a captcha task for solving — supporting common captcha types such as reCAPTCHA v2/v3, hCaptcha, Cloudflare Turnstile, and image-based captchas — and receive a solution in return, paid per-call via the Tempo L2 settlement layer.
The endpoint is located at https://twocaptcha.mpp.tempo.xyz/createTask and is expected to accept POST requests with a JSON body describing the captcha task. However, during probing the endpoint returned 404 on both HEAD and GET requests, and no 402 MPP payment challenge was captured. All crawled paths on the origin (root, /docs, /api, /pricing, /README) also returned 404 Not Found. No OpenAPI schema, documentation, or pricing information could be retrieved.
Because no live MPP challenge was observed and no documentation is available, the exact request/response schema, supported captcha types, pricing, and settlement details cannot be confirmed from the probe data. The listing is based solely on the existing Bazaar metadata, which describes it as part of the 2Captcha captcha-solving API. Users should verify availability before relying on this endpoint.
Capabilities
Use cases
- —Solving reCAPTCHA challenges programmatically during web scraping or automation
- —Bypassing hCaptcha or Turnstile challenges in automated workflows
- —Recognizing text or image-based captchas for data collection pipelines
Fit
Best for
- —Agents that need to solve captchas as part of automated web interactions
- —Pay-per-use captcha solving without managing API keys or subscriptions
- —Integrating captcha solving into MPP-compatible agent pipelines
Not for
- —Bulk captcha solving at scale where a direct 2Captcha subscription would be cheaper
- —Use cases requiring guaranteed uptime — endpoint liveness is currently unconfirmed
Quick start
curl -X POST https://twocaptcha.mpp.tempo.xyz/createTask \
-H "Content-Type: application/json" \
-d '{"type": "RecaptchaV2TaskProxyless", "websiteURL": "https://example.com", "websiteKey": "SITE_KEY"}'Example
Request
{
"type": "RecaptchaV2TaskProxyless",
"websiteKey": "6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-",
"websiteURL": "https://example.com"
}Endpoint
Quality
The endpoint returned 404 on all probe methods and no MPP 402 challenge was captured. All crawled pages returned Not Found. No schema, docs, or pricing are available. The listing is effectively a stub based on Bazaar metadata alone.
Warnings
- —Endpoint returned 404 on HEAD and GET — no MPP 402 challenge captured; endpoint may be down or require POST only
- —All crawled paths (root, /docs, /api, /pricing, /README) returned 404 Not Found
- —No OpenAPI schema, documentation, or pricing information available
- —Request/response schemas and example are inferred from general 2Captcha API conventions, not confirmed from this endpoint
- —Captcha-solving services may raise legal and ethical concerns depending on jurisdiction and use case