Antibot captcha

Giải captcha faucet siêu nhanh, giá siêu tốt, cung cấp extension tự động giải antibot. Hình minh hoạ captcha antibot như sau:

main
0
1
2
3

1. Tạo yêu cầu

Request

POST https://api.achicaptcha.com/createTask

Tên param
Kiểu dữ liệu
Bắt buộc?
Mô tả

clientKey

string

yes

Api key

task.type

string

yes

AntibotCaptchaTask

task.image

string

yes

base64 ảnh main|base64 ảnh 1|base64 ảnh 2|base64 ảnh 3|base64 ảnh 4

task.subType

string

yes

Giá trị: 0

POST /createTask HTTP/1.1
Host: api.achicaptcha.com
Content-Type: application/json

{
	"clientKey": "API_KEY của bạn",
	"task": {
		"type": "AntibotCaptchaTask",
		"image": "base64 ảnh main|base64 ảnh 1|base64 ảnh 2|base64 ảnh 3|base64 ảnh 4",
		"subType": "0"
	}
}

Response

Khi thành công, server sẽ trả về errorId = 0taskId

{
	"errorId": 0,
	"taskId": "f2fc70d6-c76b-4fba-9480-205ac1fe9fb9"
}

2. Lấy kết quả

Request

POST https://api.achicaptcha.com/getTaskResult

Tên param
Kiểu dữ liệu
Bắt buộc?
Mô tả

clientKey

string

yes

Api key

taskId

string

yes

TaskId lấy từ (1)

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": "swamn"
}
  • errorId = 0 status = ready : Giải thành công, đọc kết quả trong solution, là thứ tự ảnh cần click (tính từ 0)

  • errorId = 1 status = processing: Đang giải captcha, đợi 2 giây rồi thử lại

  • errorId > 1: Lỗi hệ thống, đưa ra mã lỗi và mô tả lỗi

Last updated