Welcome to VALSEA
VALSEA is an AI-powered audio and text processing platform. Build real-time and batch speech workflows, translation, annotation, and text analysis through a consistent API.
What Can You Do?
Quick Example
Transcribe an audio file in one batch API call:
curl -X POST https://api.valsea.ai/v1/audio/transcriptions \
-H "Authorization: Bearer YOUR_API_KEY" \
-F "file=@meeting.wav" \
-F "model=valsea-transcribe" \
-F "language=english"
Response:
{
"text": "Good morning everyone, let's start the standup..."
}
Next Steps
- Authentication — Get your API key and start making requests
- Real-time Transcription — Start with automatic language detection
- API Reference — Full reference for all endpoints with code examples