solvecaptcha-javascript
Version:
Node.js wrapper for SolveCaptcha.com API. Bypass recaptcha, hcaptcha, cloudflare capthca and more.
17 lines (16 loc) • 532 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.softId = exports.supportedProviders = void 0;
const solveCaptchaName = 'solvecaptcha';
const solveCaptchaIn = 'https://solvecaptcha.com/in.php';
const solveCaptchaRes = 'https://solvecaptcha.com/res.php';
const softId = 4845;
exports.softId = softId;
const supportedProviders = {
solveCaptcha: {
name: solveCaptchaName,
in: solveCaptchaIn,
res: solveCaptchaRes
}
};
exports.supportedProviders = supportedProviders;