Recaptcha v3
The object contains data for Google ReCaptcha3 solving task
Object structure
Parameter
Type
Required
Value
Code example (Python)
import time
import requests
# Creat job
json_data = {
"api_token": "YOUR_API_KEY",
"data": {
"type_job": "recaptcha_v3",
"sitekey": "site-key",
"siteurl": "website url",
"isEnterprise" : False,
"minScore" : 0.7,
"pageAction": "verify"
}
}
createJob = requests.post("https://betacaptcha.com/api/createJob", json=json_data)
# Get job result
for _ in range(10):
json_data = {
"api_token": "YOUR_API_KEY",
"taskid": createJob.json()["taskid"]
}
getJobResult = requests.post("https://betacaptcha.com/api/getJobResult", json=json_data)
if getJobResult.json()["status"] != "running":
result = getJobResult.json()["result"]
break
else:
time.sleep(1)
print(">> Result:", result)Last updated