Recaptcha V2/Recaptcha V3/I am not a robot/Invisible captcha API

Recaptcha V2

Bypass google ReCaptcha V2, recaptcha V3 also known as I'm not a robot Captcha is pretty simple. You send a post request with full pageurl and google site key, our server will return a Google-token that would be used to fulfil forms on ReCaptcha V2 protected sites. See the Google Sitekey and g-recaptcha-response sectoin to know about Sitekey and google token.


Price:
$1.30 per 1000 solve
Business : Negotiable on bulk production .


Request Parameters:
Action = upload
Key = The secret Access Key given to you.
captchaType = 3
gen_task_id = A unique task id given by you to use as reference of every job sent to our server. You will use this Task Id for refund claim.
sitekey = A google site identifier, see Google Site key section
pageurl = Full URL of the page where you see the ReCaptcha V2

reCAPTCHA V3: There is a new parameter action allowing to process user actions on the website differently. If you can't find it but you are sure it is reCAPTCHA v3, then try to use the default value "verify" and send it as pageaction parameter.
pageaction = verify or custom action defined in webwebsite [For V3 only]

Example - HTML - Recaptcha v2

   <form action="http://fasttypers.org/imagepost.ashx" method="post" enctype="multipart/form-data">
        <input type="text" name="action" value="upload"/>
        <input type="text" name="key" value="115KJVCWRK4ZHC63WNAGSQI9XFSAT415N9DWPLL4"/>
        <input type="text" name="captchatype" value="3"/>
        <input type="text" name="gen_task_id" value="12345"/>
        <input type="text" name="sitekey" value="6LdBay0UAAAAAKOpX--mW2musdGCMBIYmoqm6Ccb"/>
        <input type="text" name="pageurl" value="http://fasttypers.org/login.aspx"/>
        <input type="submit" value="Submit"/>
    </form>

Example - HTML - Recaptcha v3

<form action="http://fasttypers.org/imagepost.ashx" method="post" enctype="multipart/form-data">
     <input type="text" name="action" value="upload"/>
     <input type="text" name="key" value="115KJVCWRK4ZHC63WNAGSQI9XFSAT415N9DWPLL4"/>
     <input type="text" name="captchatype" value="3"/>
     <input type="text" name="gen_task_id" value="12345"/>
     <input type="text" name="pageaction" value="verify"/>
     <input type="text" name="sitekey" value="6LdBay0UAAAAAKOpX--mW2musdGCMBIYmoqm6Ccb"/>
     <input type="text" name="pageurl" value="http://fasttypers.org/login.aspx"/>
     <input type="submit" value="Submit"/>
 </form>

Response from server : g-recaptcha-response in plain text.
Example :

    03AHhf_53GA3IgaOVNukoWPsAEaXWZvWbOO86ZicV5_If0TLjKPN66JX2SP35KCXvgWL60MDORh4xG7LpDArkmijgJn8IHzMo2NOPC
    8JgSdTkpdQ09d1qnSgjZhJ8amYEvAEo21p1dZcq247F_KboBLZQAQ4_CYMDg6U6044EkYW5lvpWrX2Jc5zZWqsbggc4wkZxKQubo5a
    xwRp6WEu6PNprHIZ9cYD5wq8NzBGpRI5Mi28oJ5jEae6ePWMXxipVaDuZlm14Q_xnS86_YcaW8pmzAn1IS5dCWQ3r1O7aF6PlMHFVj
    C8xhXPoFTy9rUqys9gCqzabFyEI8fKkR3RjPKascoxd0LfNw   



Sitekey : The site key is used to invoke reCAPTCHA service on webpage. To view the sitekey of an website, do the following

1.       Look at the element's code at the page where you found ReCaptcha.

Inspect Page

2.       Find data-sitekey parameter or Find k parameter of the link to google.com.

Google Sitekey


g-recaptcha-response : In webpage that implement recaptcha v2, a new field (g-recaptcha-response) are populated in HTML. The value of g-recaptcha-response are passed to website backend to validate the recaptcha.  You have to set the value of g-recaptcha-response to submit the form. There are few method to set the value...

Method 1: Locate the element with id g-recaptcha-response and make it visible deleting display:none parameter.

An input field will appear on the page. And you just have to paste the answer token to that field and submit the form.

 if there is no submit button, please see No Submit Button Section

 

Method 2: you can just use javascript to set the value of g-recaptcha-response field:

         document.getElementById("g-recaptcha-response").innerHTML="Response_token_us";