Сообщения

Сообщения за сентябрь, 2025

My Experience with SolveCaptcha: The Best Cloudflare CAPTCHA Solver

Изображение
  I tried SolveCaptcha to bypass Cloudflare protections (Turnstile and similar) and the result was great: fast, reliable, and easy to integrate. Below are short examples showing the typical flow: submit a task to in.php and poll res.php to get the answer. Quick summary of the flow Send a request to https://api.solvecaptcha.com/in.php with method=turnstile , sitekey , pageurl and key → you get an id . Poll https://api.solvecaptcha.com/res.php with that id → receive solved token (and optionally useragent ). Insert the token into the form ( cf-turnstile-response or g-recaptcha-response ) and submit. 1) cURL (submit task) curl --location 'https://api.solvecaptcha.com/in.php' \ --form 'key="YOUR_API_KEY"' \ --form 'method="turnstile"' \ --form 'sitekey="YOUR_SITEKEY"' \ --form 'pageurl="https://example.com/register"' \ --form 'json="1"' Response example { ...