Back to Updates
v2.0.0January 1, 2026Major Update
Major UI Redesign & Unified Documentation
A complete overhaul of the user interface, unified documentation system, and enhanced real-time dashboard analytics.
We are thrilled to announce the release of CaptchaSonic v2.0.0. This major update brings a complete reimagining of our user interface, focusing on usability, speed, and modern aesthetics.
Explore the New API
Dive into our unified documentation to see the new endpoints and features in action.
New Features
- Complete UI Redesign: A fresh, modern interface built for efficiency and clarity.
- Unified Documentation System: All guides, API references, and tutorials are now consolidated in one searchable hub.
- Improved Dashboard: Real-time analytics and cleaner visualiations for your usage data.
- Enhanced API Playground: Test endpoints directly from the documentation with our new interactive playground.
Code Example: New Client
Here is how you can initialize the new client with the v2.0 SDK:
import { CaptchaSonic } from '@captchasonic/sdk';
const client = new CaptchaSonic({
apiKey: process.env.SONIC_API_KEY,
version: 'v2',
});
// Solve a CAPTCHA
const solution = await client.solve({
type: 'turnstile',
websiteKey: '0x4AAAAAA...',
url: 'https://example.com',
});
console.log('Solution:', solution.token);
Improvements
- Faster CAPTCHA Solving: Optimizations have reduced solving times by up to 30%.
- Better Error Handling: More descriptive error messages to help you debug integration issues faster.
- Optimized Font Loading: Switched to using
Zainexclusively for better performance and consistency.