Skip to main content
POST /api/v1/transcriptions Transcribe one complete audio file. Returns the text only (no note).

Request — multipart/form-data

FieldRequiredNotes
fileyesAudio file (wav, mp3, m4a, ogg, webm).
languagenoBCP-47 code. Auto-detected if omitted.
curl -X POST https://api.recnote.ai/api/v1/transcriptions \
  -H "Authorization: Bearer $RECNOTE_API_KEY" \
  -F "file=@consultation.wav" \
  -F "language=sv"

Response

{ "transcript": "Patienten söker för..." }

Errors

StatusReason
400No file provided.
401Invalid API key.
502Upstream transcription failed.