Image Tasks

Binance
Solve Binance image-recognition captchas with the NoCaptchaAI API.
Binance has no dedicated template. Solve it via the generic Classification task by sending the captcha image in body.
Create a task
POST https://api.nocaptchaai.com/createTask
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "ClassificationTask",
"body": "/9j/4AAQSkZJRgABAQ....",
"question": "Slide to complete the puzzle",
"questionType": "image"
}
}Returns a taskId:
{ "errorId": 0, "status": "idle", "taskId": "abc123" }Get the result
Poll POST https://api.nocaptchaai.com/getTaskResult until status is ready:
{ "clientKey": "YOUR_API_KEY", "taskId": "abc123" }{ "errorId": 0, "status": "ready", "solution": { "objects": [0, 3, 5] } }Code example
import requests, time
API_KEY = "YOUR_API_KEY"; BASE = "https://api.nocaptchaai.com"
task = requests.post(f"{BASE}/createTask", json={"clientKey": API_KEY, "task": {
"type": "ClassificationTask",
"body": "/9j/4AAQSkZJRgABAQ....",
"question": "Slide to complete the puzzle",
"questionType": "image"
}}).json()
tid = task["taskId"]
while True:
time.sleep(2)
res = requests.post(f"{BASE}/getTaskResult", json={"clientKey": API_KEY, "taskId": tid}).json()
if res.get("status") == "ready":
print(res["solution"]); break
if res.get("status") == "failed" or res.get("errorId"):
raise SystemExit(res)const API_KEY = "YOUR_API_KEY", BASE = "https://api.nocaptchaai.com";
const create = await fetch(`${BASE}/createTask`, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ clientKey: API_KEY, task: { type: "ClassificationTask", body: "/9j/4AAQSkZJRgABAQ....", question: "Slide to complete the puzzle", questionType: "image" } }) }).then(r => r.json());
let out;
while (true) {
await new Promise(r => setTimeout(r, 2000));
const res = await fetch(`${BASE}/getTaskResult`, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ clientKey: API_KEY, taskId: create.taskId }) }).then(r => r.json());
if (res.status === "ready") { out = res.solution; break; }
if (res.status === "failed" || res.errorId) throw new Error(JSON.stringify(res));
}
console.log(out);curl -X POST https://api.nocaptchaai.com/createTask -H "Content-Type: application/json" -d '{ "clientKey": "YOUR_API_KEY", "task": { "type": "ClassificationTask", "body": "/9j/4AAQSkZJRgABAQ....", "question": "Slide to complete the puzzle", "questionType": "image" } }'