CAPTCHAFORUM
Administrator
imagetyperzapi is a super easy to use bypass captcha API wrapper for imagetyperz.com captcha service
Installation
or
Usage
Simply require the module, set the auth details and start using the captcha service:
Once you've set your authentication details, you can start using the API.
Get balance
Documentation https://www.npmjs.com/package/imagetyperz-api
Installation
npm install imagetyperz-api
or
git clone https://github.com/imagetyperz-api/imagetyperz-api-nodejs
Usage
Simply require the module, set the auth details and start using the captcha service:
Code:
var imagetyperzapi = require('imagetyperz-api')
Set access_token for authentication:
// get access token from: http://www.imagetyperz.com/Forms/ClientHome.aspx
const ACCESS_KEY = 'access_token_here'
imagetyperzapi.set_access_key(ACCESS_KEY)
Once you've set your authentication details, you can start using the API.
Get balance
Code:
const balance = await imagetyperzapi.account_balance()
console.log('Balance:', balance)
Documentation https://www.npmjs.com/package/imagetyperz-api