Lemin CAPTCHA bypass API service
Open the developer console in your browser and search for a
<script>
tag that loads a script fronapi.leminnow.com
:<script src="https://api.leminnow.com/captcha/v1/cropped/CROPPED_2dfdd3c_d1232b323b232d23ba2b323eb23a232b/js"></script>
Send the captcha to our API
https://2captcha.com/in.php
:Extract the
captcha_id
value from the scriptsrc
property.Find the id of div element used by Lemin. The default one is
lemin-cropped-captcha
, but the value can be changed by the website owner.{ "key": "YOUR_API_KEY", "method": "lemin", "captcha_id": "CROPPED_3dfdd5c_d1872b526b794d83ba3b365eb15a200b", "api_server": "api.leminnow.com", "div_id": "lemin-cropped-captcha", "pageurl": "https://example.com/test-page", "json": 1 }
In the response you will receive the id of your captcha:
{ "status": 1, "request": "2122988149" }
Wait 15-20 seconds and make a GET request to our API endpoint:
If the captcha is already solved you will receive the answer:
If the captcha is not solved yet, you will receive
CAPCHA_NOT_READY
code in the response. Just repeat the request every 5 seconds until you receive the captcha answer. If something went wrong server will return an error code.GET https://2captcha.com/res.php?key=YOUR_API_KEY&action=get&id=2122988149&json=1
{ "status":1, "request": { "answer":"0xaxcgx0xkxbsx0xuxb8x0xuxaux0xuxaax0xux9mx0x18x9cx0x18x92x0x18x8ox0x18x8ex0x18x7qx0x18x7gx0x18x76x0x18x6sx0x18x6ix0x18x68x0xux68x_?_gAAAAABkAHJ-DXKWoMr34j7Y-K5vt6rqQIMCcG0V4KdtDhYghZGq9Uhg0SJoUX_u2414Qeq_-dEet4IGxMbZE2F_agSXTF-8w9Iy07J84I5NcQ6iPbQgPz2R74S7fWws3rn3X5AdmOYb", "challenge_id":"578c0b7b-248f-480e-a3b0-fbe2cbfdcb8b" } }
Once you have the captcha answer, use it to interact with your target website. Usually the answer is placed into a hidden input with
name=lemin_answer
.Code examples:
Read more - captcha solving API documentation.
$result = $solver->lemin([ 'captchaId' => 'CROPPED_d3d4d56_73ca4008925b4f83a8bed59c2dd0df6d', 'apiServer' => 'api.leminnow.com', 'url' => 'https://example.com/test-page', ]);
result = solver.lemin(captcha_id='CROPPED_1abcd2f_a1234b567c890d12ef3a456bc78d901d', div_id='lemin-cropped-captcha', url='https://example.com/test-page')
require 'api_2captcha' client = Api2Captcha.new("YOUR_API_KEY") result = client.lemin({ captcha_id: 'CROPPED_1abcd2f_a1234b567c890d12ef3a456bc78d901d', div_id: 'lemin-cropped-captcha', pageurl: 'https://www.site.com/page/', api_server: "https://api.leminnow.com/" })