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

FieldRequiredDescription
typeTrustCaptchaProxyless or TrustCaptchaTask
site_keyThe tc_ prefixed site key
site_urlFull URL of the page
api_urlCustom TrustCaptcha API URL override
proxyhttp://user:pass@host:port (TrustCaptchaTask only)