The /transcribe-media endpoint transcribes audio from a media URL to text or subtitle formats (e.g., srt, vtt, ass), with optional character limit and webhook notifications.
- URL:
/transcribe-media - Method:
POST
- X-API-Key (string, required): The API key used for authentication.
- media_url (string, required): URL of the media file to be transcribed.
- output (string, optional): Desired output format (
transcript,srt,vtt,ass). Defaults totranscript. - webhook_url (string, optional): URL for sending the transcription result.
- max_chars (integer, optional): Maximum number of characters per subtitle line.
- id (string, optional): Unique identifier for tracking the job.
{
"media_url": "https://example.com/audio.mp3",
"output": "srt",
"webhook_url": "https://your-webhook-url.com/notify",
"max_chars": 56,
"id": "abc123"
}curl -X POST "https://your-api-domain.com/transcribe-media" \
-H "X-API-Key: your_api_key" \
-H "Content-Type: application/json" \
-d '{
"media_url": "https://example.com/audio.mp3",
"output": "srt",
"webhook_url": "https://your-webhook-url.com/notify",
"max_chars": 56,
"id": "abc123"
}'If the transcription is successful and no webhook_url is provided:
- Status Code:
200 OK - Body:
{ "job_id": "abc123", "response": "transcript_text_or_url", "message": "success" }
If a webhook_url is provided, the request is queued, and this response is returned:
- Status Code:
202 Accepted - Body:
{ "job_id": "abc123", "message": "processing" }
- 400 Bad Request: Missing or invalid
media_url.{ "error": "Missing media_url parameter" } - 500 Internal Server Error: Transcription process failed.
{ "error": "Error during transcription" }
- 400 Bad Request: Returned if
media_urlis missing or invalid. - 500 Internal Server Error: Returned if transcription fails.
- Ensure
media_urlpoints to a compatible media file format (e.g., MP3, MP4). - If using
srt,vtt, orassformats, subtitles will follow specifiedmax_charslimits if provided.
- Invalid Media URL: Ensure
media_urlis directly accessible. - Unsupported Format: Confirm that the provided media file is in a format compatible with transcription.
- Use Webhooks for Long Transcriptions: For large files, consider using
webhook_urlto asynchronously receive transcription results. - Optimize for Readability: Adjust
max_charsbased on display needs when using subtitle formats.