Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.tryhamsa.com/llms.txt

Use this file to discover all available pages before exploring further.

Speech to Text Quickstart

Learn how to transcribe audio files using the Hamsa API.

Prerequisites

Transcribe an Audio File

curl -X POST https://api.tryhamsa.com/v1/jobs/transcribe \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: multipart/form-data" \
  -F "file=@/path/to/audio.mp3" \
  -F "language=en"