channel avatar
CaptchaAI
online

Welcome 👋

Contact Us On Telegram!

Contact Team
Telegram
CaptchaAI

Description

```rust
use captcha_oxide::solver::CaptchaSolver;
use captcha_oxide::captcha_arguments::RecaptchaV3;

#[tokio::main]
async fn main() {
  let solver = CaptchaSolver::new("YOUR TWOCAPTCHA API KEY");

  let args = RecaptchaV3 {
    page_url: String::from("https://someurl.com"),
    site_key: String::from("SITE_KEY"),
    ..Default.default()
  };

  match solver.solve(args).await {
    Ok(solution) => {
      let plaintext_solution = solution.solution;

      todo!("Use the solution");
    },
    Err(e) => {
      todo!("Handle your error");
    }
  };
}
```

SOLVE CaptchaOxide SOFTWARE NOW WITH CAPTCHAAI

FAQs

CaptchaOxide is a free, open-source Rust crate that enables asynchronous CAPTCHA solving, including reCAPTCHA V2/V3, by integrating with external CAPTCHA-solving services like 2Captcha.

Yes, the library itself is completely free. However, you need a paid key from a CAPTCHA-solving provider to use it effectively.

It supports reCAPTCHA V2 and V3. Other types depend on what your provider supports via their API.

No. As of now, it’s built primarily for services that follow the 2Captcha API schema. That includes 2Captcha, CapMonster, and CaptchaAI.

Yes, with async support via Tokio and a stable crate release on crates.io, CaptchaOxide is ready for integration in real Rust applications.

Errors such as ERROR_CAPTCHA_UNSOLVABLE, ERROR_WRONG_USER_KEY, or network timeouts are returned as Err(e) from the .solve() method and should be handled accordingly.

While CaptchaOxide is built with 2Captcha in mind, many users report slower solve speeds and higher unsolvable rates with 2Captcha. CaptchaAI offers faster solve times, higher success rates, and a similar API schema—making it a drop-in replacement that improves performance without code changes.

Since 2Captcha is the default assumption in many examples, users are often limited by its solve queue, outdated proxy pools, and frequent CAPTCHA_NOT_READY delays. CaptchaAI helps overcome these issues with modern infrastructure and support.

Currently, CaptchaOxide does not natively support advanced parameters like proxy or user-agent. However, CaptchaAI allows these fields in their API, so you can fork or extend CaptchaOxide to pass these options manually.

No. The crate currently focuses on reCAPTCHA. Additionally, CaptchaAI does not support hCaptcha either, so this limitation exists across both the library and provider.