Skip to content

BLS Captcha

BLS (ImageToText/OCR) : Image Charecter/Digit Recognition

with this POST request you can solve BLS Captcha image challenges.

Get ApiKey PRICING
POST https://api.nocaptchaai.com/createTask
Host: api.nocaptchaai.com
Content-Type: application/json

Supported module List:

"module": "common"
"module": "omgomg"
"module": "probot"
"module": "mtcap"
"module": "dell"
"module": "catch"
"module": "webde"
"module": "zefoy"
"module": "caixa"
"module": "oxcheats"
"module": "u1"
"module": "zoho"
"module": "protypers"
"module": "visa1"

Request Format

{
"clientKey": "YOUR_API_KEY", // Get API_KEY from https://NoCaptchaAi.com
"task": {
"type": "ImageToTextTask",
"module": "common", // "module_001", "module_002", ...
"body": "base64image" or ["base64image", "base64image"], // string(single) or array(multiple) of base64 of the main images
"websiteURL": "website URL", // source url to improve accuracy
"phrase": false,
"case": true,
"numeric": 0,
"math": false,
"minLength": 1,
"maxLength": 5,
"score": 0.8, // 0.8 ~ 1 expected matching score
"comment": "enter the text you see on the image"
},
"languagePool": "en"
}

Request Example

{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "ImageToTextTask",
"module": "bls", // or "morocco"
"images": [
"/9j/4AAQSkZJRgABAQAAAQAB",
"/9j/4AAQSkZJRgABAQAAAQAB",
"/9j/4AAQSkZJRgABAQAAAQAB",
"/9j/4AAQSkZJRgABAQAAAQAB",
"/9j/4AAQSkZJRgABAQAAAQAB",
"/9j/4AAQSkZJRgABAQAAAQAB",
"/9j/4AAQSkZJRgABAQAAAQAB",
"min 9 images - max 54 images"
],
"numeric": true,
"case": false,
"maxLength": 3
}
}

Response Example

{
"errorCode": "",
"errorDescription": "",
"errorId": 0,
"solution": {
"text": [
"505",
"251",
"251",
"251",
"251",
"752",
"932",
"499",
"216"
]
},
"status": "ready",
"taskId": ""
}