How to solve FunCAPTCHAs

It is very simple to solve FunCAPTCHAs through our API. FunCAPTCHA is a special type of CAPTCHA. It is not part of the monthly package plan offers. Instead you need to load-up or top-up your CAPTCHAs.IO account wallet with enough credits to be able to solve FunCAPTCHAs. To start you need to login or signup for an account and then go straight to the "Wallet" section of your account dashboard.

To start solving FunCAPTCHA via CAPTCHAs.IO API web service. Just follow the steps below:

  1. Send an HTTP Post request to https://api.captchas.io/in.php containing the parameters...
    • method = "funcaptcha"
    • key = YOUR_API_KEY
    • publickey = funCAPTCHA_SITEKEY
    • pageurl = PAGE_URL
    • surl = Service_URL
  2. Parse the response of number 1 to get CAPTCHA_ID from response string "OK|CAPTCHA_ID".
  3. Get CAPTCHA answer from https://api.captchas.io/res.php containing the parameters:
    • key = YOUR_API_KEY
    • action = "get"
    • id = CAPTCHA_ID
  4. Parse the response of number 3 to get CAPTCHA answer from response string "OK|CAPTCHA_ANSWER".
  5. Done

That's all...