Funcaptcha Image
Giải funcaptcha tốc độ siêu nhanh, cập nhật hằng ngày
Chúng tôi cung cấp dịch vụ giải tất cả các loại của Funcaptcha. Một số ví dụ như sau:



1. Tạo yêu cầu
Request
POST https://api.achicaptcha.com/createTask
clientKey
string
yes
Api key
task.type
string
yes
FuncaptchaImageTask
task.subType
string
yes
Giá trị bằng 0
task.image
string
yes
Base64 của ảnh
task.other
string
yes
Câu hỏi
Ví dụ: "Use the arrows to rotate the object to face in the direction of the hand"
Response
Khi thành công, server sẽ trả về errorId = 0
và taskId
{
"errorId": 0,
"taskId": "f2fc70d6-c76b-4fba-9480-205ac1fe9fb9"
}
2. Lấy kết quả
Request
POST https://api.achicaptcha.com/getTaskResult
clientKey
string
yes
Api key
POST /getTaskResult HTTP/1.1
Host: api.achicaptcha.com
Content-Type: application/json
{
"clientKey": "API_KEY của bạn",
"taskId": "f2fc70d6-c76b-4fba-9480-205ac1fe9fb9"
}
Response
{
"errorId": 0,
"status": "ready",
"solution": "1" // Thứ tự ảnh cần click (Tính bắt đầu từ 0)
}
Các trạng thái kết quả trả về:
errorId = 0
vàstatus = ready
: Giải thành công, đọc kết quả trongsolution
errorId = 1
vàstatus = processing
: Đang giải captcha, đợi 2-3 giây rồi thử lạierrorId > 1
: Lỗi hệ thống, đưa ra mã lỗi và mô tả lỗi
Last updated