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?

    CapabilityDescription
    Real-time Transcription (Speech-to-Text)Stream live audio with automatic language detection, including Arabic and regional variants
    Real-time Voice (Text-to-Speech)Stream generated audio over WebSocket for low-latency playback
    Batch Transcription (Speech-to-Text)Upload a complete audio file and receive its transcript in one response
    Batch Text-to-SpeechGenerate a complete audio file from text in one request
    Live TranslationStream source-language transcripts and translated final text
    Live Transcription + TranslationAdd always-on correction and optional speaker diarization for meeting and conversation workflows
    Text TranslationTranslate text between supported languages with automatic source detection
    Annotation, Clarification, and ConversionEnrich, normalize, and transform text
    Formatting and Sentiment AnalysisTurn transcripts into structured outputs and analyze sentiment and emotions

    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

    Was this page helpful?