DEVELOPER API
Direct HTTPS integration.
Authenticate private requests with your API key as a Bearer token. Network routing is managed by Aincrad.
CURRENT RATE
$0.004000 per solve
The live rate is also available as JSON from https://ddara0.dev/price.
1. Create a solve task
curl -X POST https://ddara0.dev/create-solution \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"rqdata":"BASE64_RQDATA","siteKey":"HCAPTCHA_SITE_KEY"}'Successful response: {"status":"SUCCESS","guid":"..."}
2. Poll the result
curl "https://ddara0.dev/fetch-solution?guid=TASK_GUID" \ -H "Authorization: Bearer YOUR_API_KEY"
Results: CAPTCHA_WAITING, CAPTCHA_ONGOING, CAPTCHA_SOLVED, CAPTCHA_UNSOLVEABLE, or CAPTCHA_TIMEOUT.
3. Read your balance
curl "https://ddara0.dev/balance" \ -H "Authorization: Bearer YOUR_API_KEY"
Billing rules
- Balance is charged only after a
CAPTCHA_SOLVEDresult. - Polling the same GUID never creates an additional charge.