Skip to content

ganhj99/queueit-captcha-handler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Image Based Captchas / Queue-it Captchas (BotDetect) Handler API

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

Table of Contents

Sponsor

CapSolver Ads

Consider buy me a coffee to keep the server running

Buy Me A Coffee

The API (Free to Use)

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

API Base URL

https://ocr.ganhj.dev

Endpoints

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.

Implementation (Queue-it)

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 Captcha (BotDetect)

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.

Queue-IT's Captcha

Check out queueit.py for an example script

Having issue with your captcha?

We can fine tune our ML model in order to quickly work for you as well. Contact me [email protected]