Fun Captcha
Affected Services
| # | Service ID | Service Name |
|---|---|---|
| 1 | 10017 | FunCaptcha |
| 2 | 10018 | FunCaptcha Compare |
List of imginstructions
1. Example
&imginstructions=mask_match
&imginstructions=finger_direction
&imginstructions=hopscotch
List of imginstructions
https://captcha-vdg.com/api/CreateJob
application/json
200
200
200
2. Create Job
POSThttps://captcha-vdg.com/api/CreateJob
application/json
{
"api_token": "YOUR_API_KEY",
"service_id": 10017,
"data": {
"image": "BASE64_IMAGE",
"imginstructions": "IMAGE_INSTRUCTIONS"
},
"fileType": "IMAGE_EXTENSION"
}
Response
200
{
"ok": true,
"message": "Create Job success",
"job_id": 123456
}
200
{
"ok": fail,
"message": "API is invalid"
}
200
{
"ok": fail,
"message": "Service ID is invalid"
}
List of imginstructions
https://captcha-vdg.com/api/GetJobResult
application/json
200
200
200
200
200
3. Get Job Result
POSThttps://captcha-vdg.com/api/GetJobResult
application/json
{
"api_token": "YOUR_API_KEY",
"job_id": "Service_ID",
}
Response
200
{
"ok": true,
"status": "Success"
"result": "abcd1234",
"message": "Resolve Captcha Successfully"
}
200
{
"ok": true,
"status": "Processing"
}
200
{
"ok": false,
"status": "Error",
"message": "ERROR_MESSAGE"
}
200
{
"ok": false,
"status": "Error",
"message": "API is invalid"
}
200
{
"ok": false,
"status": "Error",
"message": "Job ID is invalid"
}