PrivateCaptcha

Solve PrivateCaptcha — privacy-first captcha with no tracking

Price: $0.25 / 1k solves · Speed: ~0.6s

PrivateCaptcha is a privacy-focused captcha that doesn't track users. It uses a challenge-response mechanism.

Finding the site key

Look in the page HTML for the PrivateCaptcha widget:

<div id="privatecaptcha" data-sitekey="pc_..."></div>

Or in the JS initialization:

PrivateCaptcha.init({ siteKey: 'pc_...' })

Request

{
  "type": "PrivateCaptchaProxyless",
  "site_key": "pc_...",
  "site_url": "https://example.com"
}

Response

{
  "success": true,
  "token": "pc_solution_...",
  "took_ms": 600,
  "cost": 0.00025
}

cURL example

curl -s -X POST https://api.solver.lol/solve \
  -H "X-API-Key: sk_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "PrivateCaptchaProxyless",
    "site_key": "pc_...",
    "site_url": "https://example.com"
  }'

Parameters

FieldRequiredDescription
typePrivateCaptchaProxyless
site_keyThe pc_ prefixed site key
site_urlFull URL of the page
proxyhttp://user:pass@host:port