This API solves both reCAPTCHA V2 and reCAPTCHA Enterprise.
reCAPTCHA Token API consumes 20 credits per POST request.
Examples of reCAPTCHA V2
Puzzle challenges presented by reCAPTCHA V2 and V3 are indistiguishable. However, the method of extracting tokens is different, so please correctly identify the reCAPTCHA version you wish to solve. Details on how to do this are outlined below.
reCAPTCHA V2 Widget looks like the following:
reCAPTCHA V2 Widget
If you see this widget on the webpage you wish to bypass, you are on the correct page. Keep on reading!
# Install the client using the following command:# pip install --upgrade nopechaimport nopecha
nopecha.api_key ='YOUR_API_KEY'# Call the Token API
token = nopecha.Token.solve(type='recaptcha2',
sitekey='6Ld8NA8jAAAAAPJ_ahIPVIMc0C4q58rntFkopFiA',
url='https://nopecha.com/demo/recaptcha#easy')# Print the tokenprint(token)