Multi-Captcha Solver Adapter - v1.1.2
    Preparing search index...

    Interface IMultiCaptchaSolverOptions

    Configuration options for initializing a MultiCaptchaSolver instance.

    IMultiCaptchaSolverOptions

    const options: IMultiCaptchaSolverOptions = {
    apiKey: 'YOUR_API_KEY',
    captchaService: ECaptchaSolverService.TwoCaptcha,
    retries: 3
    };
    interface IMultiCaptchaSolverOptions {
        apiKey: string;
        captchaService: ECaptchaSolverService;
        retries?: number;
    }
    Index

    Properties

    apiKey: string

    The API key for the selected captcha solving service. Get this from your service provider's dashboard.

    captchaService: ECaptchaSolverService

    The specific captcha solving service to be used. Choose from available providers like TwoCaptcha or AntiCaptcha.

    retries?: number

    Number of retries for failed captcha solving attempts. Uses exponential backoff between retries.

    3