TrustCaptcha
Solve TrustCaptcha — lightweight privacy-first captcha
Price: $0.15 / 1k solves · Speed: ~0.6s
TrustCaptcha is a lightweight captcha focused on privacy. No personal data collected.
Finding the site key
Look in the page HTML for the TrustCaptcha widget:
<div class="trustcaptcha-widget" data-sitekey="tc_..."></div>Or in the script tag:
<script src="https://cdn.trustcaptcha.com/widget.js" data-sitekey="tc_..."></script>Request
{ "type": "TrustCaptchaProxyless", "site_key": "tc_...", "site_url": "https://example.com" }
If the site uses a custom TrustCaptcha API URL, pass it via api_url:
{ "type": "TrustCaptchaProxyless", "site_key": "tc_...", "site_url": "https://example.com", "api_url": "https://custom.trustcaptcha.com" }
Response
{ "success": true, "token": "tc_solution_...", "took_ms": 600, "cost": 0.00015 }
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": "TrustCaptchaProxyless", "site_key": "tc_...", "site_url": "https://example.com" }'
Parameters
| Field | Required | Description |
|---|---|---|
type | ✓ | TrustCaptchaProxyless or TrustCaptchaTask |
site_key | ✓ | The tc_ prefixed site key |
site_url | ✓ | Full URL of the page |
api_url | — | Custom TrustCaptcha API URL override |
proxy | — | http://user:pass@host:port (TrustCaptchaTask only) |