hCaptcha Solve
10 creditsSolve a standard, non-Enterprise challenge and return a fresh token for the supplied sitekey and page URL.
/api/v1/tools/hcaptcha/solveParameters
The hCaptcha sitekey rendered by the target page.
Full URL where the token will be consumed. Its hostname is used while hCaptcha mints the token.
Authenticated public HTTP proxy URL. Percent-encode reserved characters in credentials. When omitted, the managed hCaptcha proxy pool is used; direct egress is never used.
Enterprise request data. Enterprise hCaptcha is not supported yet; requests containing rqdata return 422.
Response Schema
Solver result
Fresh, single-use hCaptcha token. Pass it to the target flow immediately before it expires.
Number of visual challenge rounds completed.
Total solver time in milliseconds.
Request and billing metadata
Tool name (hcaptcha-solve)
Credits consumed after a successful solve (10)
Unique request ID
Request
curl -X POST https://scraper.run/api/v1/tools/hcaptcha/solve \-H "Authorization: Bearer sc_live_..." \-H "Content-Type: application/json" \-d '{"sitekey": "10000000-ffff-ffff-ffff-000000000001","url": "https://example.com/application"}'
Response Example
{"data": {"token": "P1_eyJ0eXAiOiJKV1QiLCJhbGciOi...redacted","rounds": 2,"ms": 32104},"meta": {"tool": "hcaptcha-solve","creditsUsed": 10,"requestId": "req_abc123"}}