Giải captcha hình ảnh
Endpoint
POST https://api.anticaptcha.pro/v1/createTask
Các tham số body
Tên trường
Kiểu dữ liệu
Bắt buộc
Mô tả
apiKey
string
✔️
Api key sử dụng dịch vụ
method
string
✔️
Giá trị image
body
string
✔️
chuỗi base64 của hình ảnh, ví dụ: iVBORw0KGgoAAAANSUhEUgAAAPIA...
version
string
Request mẫu
curl --location 'https://api.anticaptcha.pro/v1/createTask' \
--header 'Content-Type: application/json' \
--data '{
"apiKey": "d7aro666cxlpjx822ctvzwmq09x3y6mc",
"method": "image",
"version": "default",
"body": "<BASE64_IMAGE>"
}'
const myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
const raw = JSON.stringify({
"apiKey": "d7aro666cxlpjx822ctvzwmq09x3y6mc",
"method": "image",
"version": "default",
"body": "<BASE64_IMAGE>"
});
const requestOptions = {
method: "POST",
headers: myHeaders,
body: raw,
redirect: "follow"
};
fetch("https://api.anticaptcha.pro/v1/createTask", requestOptions)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.error(error));
import requests
import json
url = "https://api.anticaptcha.pro/v1/createTask"
payload = json.dumps({
"apiKey": "d7aro666cxlpjx822ctvzwmq09x3y6mc",
"method": "image",
"version": "default",
"body": "<BASE64_IMAGE>"
})
headers = {
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://api.anticaptcha.pro/v1/createTask");
var content = new StringContent("{\r\n \"apiKey\": \"d7aro666cxlpjx822ctvzwmq09x3y6mc\",\r\n \"method\": \"image\",\r\n \"version\": \"default\",\r\n \"body\": \"<BASE64_IMAGE>\"\r\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Kết quả trả về
{
"success": true,
"data": {
"status": "idle",
"taskId": "add42add-02c3-431b-91ce-e8646bd7eea4" //Bạn cần lưu taskId để có thể lấy kết quả của captcha
}
}
{
"success": false,
"code": 404,
"msg": "Apikey is invalid"
}
{
"success": false,
"code": 400,
"msg": "Insufficient balance"
}
{
"success": false,
"code": 400,
"msg": [
"body must be a string",
"version must be one of the following values: onlynumber, default, invidual, invidual6, media, steam, yandex, amazon, garena, hotmail, facebook"
]
}
Last updated