cURL
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." }
Accept an audio file, stream it into GridFS (async), and queue a job with the resulting GridFS file ID (as a string).
A JSON string of FormattingOptions, e.g., '{"newline_pause_threshold": 0.8}'.
Successful Response
Response model when a non-streaming job is successfully queued.