API and Plugins

We can now solve confident captcha,google captcha and case sensitive captchas.Please check our API page or contact us for more details.

Rotate Captcha API AND PLUGINS

Decaptcha API

You can access our service through simple HTTP request response model. You will upload a base64 encoded image file with your username and password. We will decode and send it back to you as response text


HTTP Request links:


Rotate Captcha:


1.Image Upload via file

Example:


    <form action="http://captchatypers.com/Forms/UploadFileAndGetText.ashx" method="post" 
    enctype="multipart/form-data">
    <input type="text" name="action" value="UPLOADCAPTCHA" />
    <input type="text" name="username" value="my_username" />
    <input type="text" name="password" value="my_password" />
    <input type="file" name="file" />
    <input type="submit" value="Submit" />
    </form>
                                                     
Response from server

1.If success the captcha decoded text will be returned.

     Example of output (id|result) : "1245986|HGFJD"

2.When error occured.

Example:
ERROR: INVALID_REQUEST = It will be returned when the program tries to send the invalid request. ERROR: INVALID_USERNAME = If the username is not provided, this will be returned. ERROR: INVALID_PASSWORD = if the password is not provide, this will be returned. ERROR: INVALID_IMAGE_FILE = No file uploaded or No image type file uploaded. ERROR: AUTHENTICATION_FAILED = Provided username and password are invalid. ERROR: INVALID_IMAGE_SIZE_30_KB = The uploading image file must be 30 KB. ERROR: UNKNOWN = Unknown error happened, close the program and reopen. ERROR: NOT_DECODED = The captcha is timedout

2.Set Bad Image

Example:


    <form action="http://captchatypers.com/Forms/SetBadImage.ashx" method="post">
    <input type="text" name="action" value="SETBADIMAGE" />
    <input type="text" name="username" value="my_username" />
    <input type="text" name="password" value="my_password" />
    <input type="text" name="imageid" value="imageid" />
    <input type="submit" value="Submit" />
    </form>
                                                     
Response from server

1.If the image is set as bad.

    SUCCESS

2.When error occured.

    ERROR: INVALID_REQUEST = It will be returned when the program tries to send the invalid request.
    ERROR: INVALID_USERNAME = If the username is not provided, this will be returned.
    ERROR: INVALID_PASSWORD = if the password is not provide, this will be returned.
    ERROR: AUTHENTICATION_FAILED = Provided username and password are invalid.
    ERROR: UNKNOWN = Unknown error happened, close the program and reopen.
    ERROR: INVALID_IMAGE_ID = Not provided image id or Provided invalid image id.
                                                    

3.Request Balance

Example:

 
    <form action="http://captchatypers.com/Forms/RequestBalance.ashx" method="post">
    <input type="text" name="action" value="REQUESTBALANCE" />
    <input type="text" name="username" value="my_username" />
    <input type="text" name="password" value="my_password" />
    <input type="submit" value="Submit" />
    </form>
                                                   
Response from server

1.If success the amount will be returned.

$2.50

2.When error occured.

    ERROR: INVALID_REQUEST = It will be returned when the program tries to send the invalid request.
    ERROR: INVALID_USERNAME = If the username is not provided, this will be returned.
    ERROR: INVALID_PASSWORD = if the password is not provide, this will be returned.
    ERROR: AUTHENTICATION_FAILED = Provided username and password are invalid.
    ERROR: UNKNOWN = Unknown error happened, close the program and reopen.