5-Minute Quick Start
Get from zero to voice verification in minutes
1
Get API Keys
Sign up and get your API keys in seconds
30 sec
2
Install SDK
npm install @voxmind/sdk or pip install voxmind
1 min
3
Enroll a Voice
Create a voiceprint from a 3-5 second audio sample
2 min
4
Verify Identity
Verify users against their voiceprint in real-time
1 min
SDKs & Libraries
Official SDKs for your favorite languages
Code Examples
Copy, paste, and start building
import Voxmind from '@voxmind/sdk';
const voxmind = new Voxmind({ apiKey: process.env.VOXMIND_API_KEY });
// Enroll a new voiceprint
const enrollment = await voxmind.voice.enroll({
userId: 'user_123',
audioUrl: 'https://example.com/enrollment.wav'
});
console.log(`Enrolled: ${enrollment.voiceprintId}`);
// Verify identity
const verification = await voxmind.voice.verify({
voiceprintId: enrollment.voiceprintId,
audioUrl: 'https://example.com/verify.wav'
});
if (verification.match && !verification.isSynthetic) {
console.log('✅ Verified! Confidence:', verification.confidence);
} else if (verification.isSynthetic) {
console.log('⚠️ Deepfake detected!');
} else {
console.log('❌ Voice does not match');
}Developer Resources
Everything you need to build with Voxmind