This page is for users that use a software which works with 2captcha but want to be able to use it with Death By Captcha.
http://api.deathbycaptcha.com/2captcha/in.php to upload captchas and
http://api.deathbycaptcha.com/2captcha/res.php to retrieve responses, get balance and report captchas.
To do so, follow these steps:
Text, image group, coordinate and token captchas are supported by our 2captcha API. Trying to upload any other captcha type will result in an ERROR_URL_METHOD_FORBIDDEN error message from the API.
These are the same as for the actual 2captcha API. Refer to its documentation for details. The only difference is that the api_key field is your_dbc_username:your_dbc_password.
Normal Captcha using POST:
<form action="http://api.deathbycaptcha.com/2captcha/in.php"
method="post"
enctype="multipart/form-data">
<input type="hidden" name="method" value="post">
Your key (username:password):
<input type="text" name="key" value="YOUR_APIKEY">
Want json response (0/1) 0=false, 1=true:
<input type="text" name="json" value="0">
The CAPTCHA file:
<input type="file" name="file">
<input type="submit" value="Upload and get the ID">
</form>