👉WORKER_CASH $0.6

Create task

POST https://hmcaptcha.com/Recognition

1.WORKER CASH WEB

- Hình lớn:

- Hình nhỏ:

Example https://hmcaptcha.com/recognition

{ "Apikey": "YOUR APIKEY", "Type": "WORKER_CASH_WEB", "base64_image1": "base64 của captcha chính (hình lớn) lấy trong thẻ <img>", "base64_image2": "base64 của các hình yêu cầu (hình nhỏ) lấy trong thẻ <img>" }

2.WORKER CASH APP

Example https://hmcaptcha.com/recognition

{ "Apikey": "YOUR APIKEY", "Type": "WORKER_CASH_APP", "Image": "Image as base64 encoded" }

Query Parameters

Name
Type
Description

wait

Bool

If the 'wait=1' parameter is added to the URL, the result will return immediately after the captcha is solved without needing to call 'getResult'

Headers

Name
Type
Description

Content-Type

String

application/json

Request Body

Name
Type
Description

Apikey*

String

The apikey or subscription key

Type*

String

WORKER_CASH_WEB

WORKER_CASH_APP

Image

String

(APP) Image encoded as base64

URL_Image

String

(APP) Required if Image is missing.

base64_image1*

String

(WEB) Image captcha encoded as base64

base64_image2*

String

(WEB) Image queue encoded as base64

{
    "Code": 0,
    "TaskId": 123456,
    "Message": "OK"
}

Get result

GET https://hmcaptcha.com/getResult?apikey={your_apikey}&taskid={taskid}

Example https://hmcaptcha.com/getResult?apikey=admingoiZ4dxa1GNHH!Rt0He8KEnrfYJCz3JE&taskid=12345

Query Parameters

Name
Type
Description

apikey*

String

The user apikey. Get it in dashboard

taskid*

String

The task id from Create Task step

{
    "Code": 0,
    "Status": "PENDING",
    "Data": null
}

Last updated