/solve Endpoint

Send a POST with JSON to receive a Cloudflare token.

Parameters

ParameterTypeRequiredDescription
keystringYesYour API key.
challengetypestringYes WAFv3, JSD, or Turnstile.
urlstringYes Target URL, must include protocol (e.g. https://).
sitekeystringOnly if Turnstile Turnstile sitekey.
proxystringNo Optional proxy **must start with scheme** Format: scheme://username:password@host:port Examples: http://user:[email protected]:3128, socks5://proxy.com:1080

Copy-Paste Examples

        
        {
          "key": "abcd1234",
          "challengetype": "Turnstile",
          "url": "https://protected.site.com",
          "sitekey": "0x1234567890abcdef",
          "proxy": "http://user:[email protected]:3128"
        }
      
        
        {
          "key": "abcd1234",
          "challengetype": "WAFv3",
          "url": "https://wafv3.site.com",
          "proxy": "http://proxyhost.com:8080"
        }
      
        
        {
          "key": "abcd1234",
          "challengetype": "JSD",
          "url": "https://jsd.site.com",
          "proxy": "socks5://user:[email protected]:1080"
        }
      
        
        {
          "key": "abcd1234",
          "challengetype": "WAFv3",
          "url": "https://nopxy.site.com"
        }
      

Need help? Ping us on Discord.