Create Task (ReCaptcha V3)
POST
https://api.ez-captcha.com/createTask
Request
Body Params application/json
clientKey
string
required
task
object
required
websiteURL
string
required
websiteKey
string
required
type
string
required
isInvisible
boolean
required
pageAction
string
required
Example
{
"clientKey": "cc9c18d3e263515c2c072b36a7125eecc078618f",
"task": {
"websiteURL": "https://recaptcha-demo.appspot.com/recaptcha-v3-request-scores.php",
"websiteKey": "6LdyC2cUAAAAACGuDKpXeDorzUDWXmdqeg-xy696",
"type": "ReCaptchaV3TaskProxyless",
"isInvisible": true,
"pageAction": "examples/v3scores"
}
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.ez-captcha.com/createTask' \
--header 'Content-Type: application/json' \
--data-raw '{
"clientKey": "cc9c18d3e263515c2c072b36a7125eecc078618f",
"task": {
"websiteURL": "https://recaptcha-demo.appspot.com/recaptcha-v3-request-scores.php",
"websiteKey": "6LdyC2cUAAAAACGuDKpXeDorzUDWXmdqeg-xy696",
"type": "ReCaptchaV3TaskProxyless",
"isInvisible": true,
"pageAction": "examples/v3scores"
}
}'
Responses
🟢200OK
application/json
Body
errorId
integer
required
errorCode
string
required
errorDescription
string
required
taskId
string
required
Example
{
"errorId": 0,
"errorCode": "string",
"errorDescription": "string",
"taskId": "string"
}
Modified at 2025-01-02 09:06:32