Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Parameters

Type

Required

Description

clientKey

string

true

Account client key, which can be found in the personal center

type

string

true

Task type: FuncaptchaTaskProxyless

websiteURL

string

true

Website url using Funcaptcha, usually a fixed value

websiteKey

string

true

Funcaptcha site key, a fixed value

data

string

false

Additional parameter that may be required by FunCaptcha implementation. Use this property to send "blob" value as a stringified array. See example how it may look like. {"\blob\":\"HERE_COMES_THE_blob_VALUE\"}

funcaptchaApiJSSubdomain

string

false

A special subdomain of funcaptcha.com, from which the JS captcha widget should be loaded. Most FunCaptcha installations work from shared domains.

Request Example

Code Block
POST https://api.ez-captcha.com/createTask
Content-Type: application/json

{
  "clientKey": "7e5ffc29e3354a19991002f2a19978bb696679",
  "task": {
    "websiteURL": "https://signup.live.com/signup2",
    "websiteKey": "B7D8911C-5CC8-A9A3-35B0-554ACEE604DA",
    "type": "FuncaptchaTaskProxyless"
  }
}

...