Frequently Asked Questions
Find answers to common questions
noncaptcha.com is a professional captcha solving service that helps you automate the process of bypassing various types of captchas including SmartCaptcha (Yandex), PuzzleCaptcha, and TextCaptcha.
Integration is simple and takes just a few minutes:
- 1. Register an account and get your API key
- 2. Send captcha images to our API endpoint
- 3. Receive the solution within seconds
- 4. Use the solution in your application
You pay only for successful solves. All prices are per 1000 successful captchas:
| Captcha Type | RUB |
|---|---|
| Text Captcha (OCR) | 2 ₽ |
| Puzzle Captcha | 4 ₽ |
| Coords Captcha | 6 ₽ |
| SmartCaptcha (Yandex) | 6 ₽ |
- No monthly fees
- No setup costs
- Pay only for what you use
Our service provides fast response times with high accuracy:
| Captcha Type | Avg Time | Accuracy |
|---|---|---|
| Text Captcha | ~0.37s | 97.7% |
| Coords Captcha | ~0.41s | 99.9% |
| Puzzle Captcha | ~1.24s | 99.8% |
Based on real dataset benchmark. Times may vary depending on image complexity.
We provide comprehensive documentation and code examples for multiple programming languages:
- C# - Full SDK with error handling
- Python - Simple requests examples
- PHP - cURL implementation
- Java - HttpClient examples
- Node.js - JavaScript/TypeScript
Yes, our service is completely legal and safe:
- We comply with all applicable laws and regulations
- We do not store captcha images after solving
- All communications use SSL/TLS encryption
- Your API key is kept secure and private
Yes, we provide 24/7 customer support via multiple channels:
- Email: support@noncaptcha.com
- Telegram: Available for urgent issues
- Knowledge Base: Comprehensive documentation and guides
Response time: typically within 1-2 hours during business hours, up to 24 hours for non-urgent inquiries.
We support the following captcha types:
-
TextCaptcha (OCR):
Text recognition from images -
PuzzleCaptcha:
Slider and drag-to-solve puzzles
-
CoordsCaptcha:
Click-on-image coordinate selection -
SmartCaptcha (Yandex):
Modern AI-powered captcha system
Yes, our service automatically caches solutions for identical images:
- Identical images are cached for a short period
- You are charged only once per unique image
- Cache duration is optimized for cost savings
For repeated tasks in your application, consider implementing local caching to save additional costs.
When your balance is insufficient to process a request:
- API returns HTTP 402 Payment Required
- Error message: "Insufficient balance"
- No captcha is solved and no charge is applied
Best practice:
- Check your balance before sending requests
- Implement retry logic with balance checks
- Set up balance alerts in your application
Yes, we provide a system of API mirrors for high availability:
- Multiple endpoints available for load balancing
- Automatic failover to backup servers
- Get active mirrors via GET /api/json/endpoints
Implementation example:
// Get list of active mirrors
var response = await client.GetAsync("http://api.noncaptcha.com/api/json/endpoints");
var mirrors = await response.Content.ReadAsAsync<EndpointsResponse>();
// Use mirror with highest priority (lowest value)
var primary = mirrors.endpoints.OrderBy(m => m.priority).First();
var apiUrl = primary.url;