Developer Docs
Ship voice security
in minutes.
One API gives you access to self-trained SOTA deep learning models. deepfake detection, intent analysis, speaker verification, and audio intelligence across 50+ languages. >99% accuracy on the "In-the-Wild" dataset. SDKs for Python and Node.js.
REST APIWebSocket StreamingPython SDKNode.js SDK50+ Languages>99% AccuracyVoicemail & IVR99.9% Uptime SLA
Quick Start
Install an SDK and make your first detection call in under 5 minutes.
1
Install the SDK
pip install vocos# or: npm install @vocos/node2
Get your API key
Sign up at dashboard.vocos.ai and generate a live API key. Keys start with vcs_live_.
3
Make your first call
from vocos import Vocos
result = Vocos(api_key="vcs_live_...").detect("audio.wav")
API Reference
Three products, one API key. Select a product to see code examples.
1from vocos import Vocos23client = Vocos(api_key="vcs_live_...")45# Detect deepfakes in a single audio file6result = client.detect("call_recording.wav")78print(result.verdict) # "synthetic" | "authentic"9print(result.confidence) # 0.99410print(result.latency_ms) # 2311print(result.artifacts) # ["formant_smearing", ...]12print(result.language) # "en-US"
Endpoints
Base URL: https://api.vocos.ai
POST
/v1/detectPOST
/v1/detect/intentPOST
/v1/detect/intelligencePOST
/v1/shield/streamPOST
/v1/shield/configurePOST
/v1/verify/enrollPOST
/v1/verify/authenticateGET
/v1/languagesAuthentication
Bearer Token
All requests use Bearer authentication. Include your API key in the Authorization header.
Authorization: Bearer vcs_live_...
Rate Limits
Generous defaults
- Detect1,000 req/min
- Shield100 concurrent streams
- Verify500 req/min
Enterprise plans include custom rate limits.
Ready to integrate?
Get an API key and start detecting synthetic speech in under 5 minutes.