Job Lists
-
1. Create task
Request
POST https://win32.vn/api/v1/api/v1/TaskcaptchaBody
{ "token": "YOUR API KEY", "typecaptcha": "vcb", // loại captcha muốn giải theo bảng trên "base64": "your image as base64 encoded here" }
Query params description required optional
- string token is your api key, you can get it here
- string typecaptcha The image as base64 encoded
- string base64 The image as base64 encoded
Response
{ "success": true, "captcha": "jjjjjj", "TASK": "1Y5C3BDZE7GJ" }
Example
PHP - cURLPHP - GuzzlePython - Requests$curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://win32.vn/api/v1/api/v1/Taskcaptcha', CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'POST', CURLOPT_POSTFIELDS =>'{ "token": "xxxxxxxxxx", "typecaptcha": "vcb", "base64": "/9j/4AAQfyqUAAcDFFFAC0UUUAFFFFABRRRQAUUUUAf/Z"}', CURLOPT_HTTPHEADER => array( 'Content-Type: application/json' ), )); $response = curl_exec($curl); curl_close($curl); echo $response;
$client = new Client(); $headers = [ 'Content-Type' => 'application/json' ]; $body = '{ "token": "xxxxxxxxxxx", "typecaptcha": "mbbank2", "base64": "/9j/4AAQSkZJRgABAgeWn9xfyqUAAcDFFFAC0UUUAFFFFABRRRQAUUUUAf/Z" }'; $request = new Request('POST', 'https://win32.vn/api/v1/api/v1/Taskcaptcha', $headers, $body); $res = $client->sendAsync($request)->wait(); echo $res->getBody();
import requests import json url = "https://win32.vn/api/v1/api/v1/Taskcaptcha" payload = json.dumps({ "token": "xxxxxxxx", "typecaptcha": "mbbank2", "base64": "/9j/4AAQSkZJRgABA9l8dddddasdasdqewFFFABRRRQAUUUUAf/Z" }) headers = { 'Content-Type': 'application/json' } response = requests.request("POST", url, headers=headers, data=payload) print(response.text)
typecaptcha: mbbank và các loại captcha tương tự

typecaptcha: mbbank2 và các loại captcha tương tự

typecaptcha: bidv và các loại captcha tương tự

typecaptcha: vcb và các loại captcha tương tự

typecaptcha: ocr Các captcha dạng Image to text không thuộc các loại trên, tự động nhận diện
