EzCaptcha
    EzCaptcha
    • Create Task (ReCaptcha V2)
      POST
    • Create Task (ReCaptcha V3)
      POST
    • Get Task Result
      POST

      Create Task (ReCaptcha V2)

      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
      Example
      {
          "clientKey": "cc9c18d3e263515c2c072b36a7125eecc078618f",
          "task": {
              "websiteURL": "https://www.google.com/recaptcha/api2/demo",
              "websiteKey": "6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-",
              "type": "ReCaptchaV2TaskProxyless",
              "isInvisible": false
          }
      }

      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://www.google.com/recaptcha/api2/demo",
              "websiteKey": "6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-",
              "type": "ReCaptchaV2TaskProxyless",
              "isInvisible": false
          }
      }'

      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:22
      Next
      Create Task (ReCaptcha V3)
      Built with