Some captchas are based on text displayed in a tricky way inside an image. We have a well trained Machine Learning model ready to solve all of them with more than 98% success rate. Here's some examples
Consider buy me a coffee to keep the server running
We have two endpoints that works for images OCR. By passing an image as base64 string, it will return a JSON containing the extracted text
POST /ocr
Works for all universal images OCR with a success rate of > 75% tested on ~20,000 samples.
POST /queueit
Specially crafted for Queue-it image captcha (BotDetect) with a success rate of > 98% tested on ~20,000 samples.
Example Request (CURL)
curl --request POST \
--url 'https://ocr.ganhj.dev/queueit' \
--header 'Content-Type: application/json' \
--data '{
"image_data": "/9j/4AAQSkZJRgABAQAA..."
}'
Example Response
{
"answer": "1Z42ET"
}
Queue IT offers to their clients to use their own Captcha solution, known as BotDetect as well. It is an image based captcha, that you can easily solve with our FREE APIs.
Check out queueit.py for an example script
We can fine tune our ML model in order to quickly work for you as well. Contact me [email protected]