🍏
Achicaptcha.com
  • Giới thiệu
  • Captcha chữ
  • Amazon captcha
  • Facebook captcha
  • hCAPTCHA Token
  • hCAPTCHA Image
  • Funcaptcha Image
  • ReCAPTCHA
  • Geetest Captcha
    • Geetest Token
    • Geetest Image
  • Tiktok captcha
  • Shopee captcha
  • Faucet Captcha
    • Antibot captcha
Powered by GitBook
On this page
  • 1. Tạo yêu cầu
  • Request
  • Response
  • 2. Lấy kết quả
  • Request
  • Response

Funcaptcha Image

Giải funcaptcha tốc độ siêu nhanh, cập nhật hằng ngày

PrevioushCAPTCHA ImageNextReCAPTCHA

Last updated 7 months ago

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

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

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"
}

Server sẽ trả về errorId > 0 and errorCode

{
	"errorId": 1,
	"errorCode": "ERROR_KEY_DOES_NOT_EXIST",
	"errorDescription": "ERROR_KEY_DOES_NOT_EXIST"
}

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

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)
}
{
	"errorId": 1,
	"status": "processing"
}
{
	"errorId": >1,
	"errorCode": >1,
	"errorDescription": "Thông tin lỗi"
}

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ả trong solution

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

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

TaskId lấy từ

(1)