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

      Get Task Result

      POST
      https://api.ez-captcha.com/getTaskResult

      Request

      Body Params application/json
      clientKey
      string 
      required
      taskId
      string 
      required
      Example
      {
          "clientKey": "YOUR_API_KEY",
          "taskId": "TASKID OF CREATETASK"
      }

      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/getTaskResult' \
      --header 'Content-Type: application/json' \
      --data-raw '{
          "clientKey": "YOUR_API_KEY",
          "taskId": "TASKID OF CREATETASK"
      }'

      Responses

      🟢200OK
      application/json
      Body
      errorId
      integer 
      required
      errorCode
      string 
      required
      errorDescription
      string 
      required
      taskId
      string 
      required
      solution
      object 
      required
      gRecaptchaResponse
      string 
      required
      status
      string 
      required
      Example
      {
          "errorId": 0,
          "errorCode": "string",
          "errorDescription": "string",
          "taskId": "string",
          "solution": {
              "gRecaptchaResponse": "string"
          },
          "status": "string"
      }
      Modified at 2025-01-02 09:06:36
      Previous
      Create Task (ReCaptcha V3)
      Built with