POST
/
api
/
v1
/
transcribe
Create Transcription Job
curl --request POST \
  --url https://api.fennec-asr.com/api/v1/transcribe \
  --header 'Content-Type: multipart/form-data' \
  --header 'X-API-Key: <api-key>' \
  --form 'context=<string>' \
  --form apply_contextual_correction=false \
  --form 'formatting=<string>' \
  --form audio=@example-file
{
  "job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "queued",
  "detail": "Your transcription job has been successfully queued."
}

Authorizations

X-API-Key
string
header
required

Body

multipart/form-data
audio
file
required
context
string | null
apply_contextual_correction
boolean
default:false
formatting
string | null

A JSON string of FormattingOptions, e.g., '{"newline_pause_threshold": 0.8}'.

Response

Successful Response

Response model when a non-streaming job is successfully queued.

job_id
string<uuid>
required
status
string
default:queued
detail
string
default:Your transcription job has been successfully queued.