FriendlyCaptcha
Solve FriendlyCaptcha v1 — privacy-friendly PoW captcha
Price: $0.30 / 1k solves · Speed: ~0.8s
Only FriendlyCaptcha v1 is supported. v2 is not supported yet.
FriendlyCaptcha v1 is a proof-of-work captcha that runs a puzzle in the background. No user interaction required.
Finding the site key
Look in the page HTML for the v1 widget:
<div class="frc-captcha" data-sitekey="FCMST..."></div>The site key starts with FCMST followed by alphanumeric characters. If you see a different format (e.g. starting with FC2), that's v2 which is not yet supported.
Request
{ "type": "FriendlyCaptchaProxyless", "site_key": "FCMST...", "site_url": "https://example.com" }
Response
{ "success": true, "token": "FCMST.DONE.abc123...", "took_ms": 800, "cost": 0.0003 }
Submit the token as frc-captcha-solution in the form POST.
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": "FriendlyCaptchaProxyless", "site_key": "FCMST...", "site_url": "https://example.com" }'
Parameters
| Field | Required | Description |
|---|---|---|
type | ✓ | FriendlyCaptchaProxyless |
site_key | ✓ | The data-sitekey value (must start with FCMST) |
site_url | ✓ | Full URL of the page |
proxy | — | http://user:pass@host:port |