Re-Captcha
Affected Services
# | Service ID | Service Name |
---|---|---|
1 | 2 | ReCaptcha-V2 (all) |
2 | 3 | ReCaptcha-V3 (all) |
3 | 10007 | ReCaptcha-V2 Invisible |
4 | 10008 | ReCaptcha-V3 Enterprise |
5 | 10015 | ReCaptcha-V2 Enterprise |
6 | 10016 | HCaptcha |
1. Create Job
POSThttps://captcha-vdg.com/api/CreateJob
application/json
{ "api_token": "YOUR_API_KEY", "service_id": "Service_ID", "data": { "weburl": WEB_URL, "webkey": WEB_KEY } }
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" }
2. 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" }