TranscribeCreate a transcription
Transcribe

Create a transcription

Creates a new transcription from an audio or video file.

curl -X POST "https://api.fetchmedia.io/v1/transcribe" \
  -H "Content-Type: application/json" \
  -H "X-API-KEY: YOUR_API_KEY" \
  -d '{
  "file_url": "https://www3.cde.ca.gov/download/rod/big_buck_bunny.mp4",
  "webhook": "https://example.com/webhook"
}'
{
  "transcribe_id": "123e4567-e89b-12d3-a456-426614174000"
}
POST
/transcribe
POST
API Key (header: X-API-KEY)
X-API-KEYstring
Required

API key (sent in header)

API Key (query: key)
keystring
Required

API key (sent in query)

Content-Typestring
Required

The media type of the request body

Options: multipart/form-data, application/json
filestring

The file to transcribe. Mutually exclusive with file_url.

Format: binary
file_urlstring

The URL of the file to transcribe. Mutually exclusive with file.

Format: url
webhookstring

The webhook to send the payload once the transcription is completed.

Format: url
Request Preview
Response

Response will appear here after sending the request

Authentication

header
X-API-KEYstring
Required

API Key for authentication. Provide your API key in the header.

query
keystring
Required

API Key for authentication. Provide your API key in the query.

Body

file_urlstring

The URL of the file to transcribe. Mutually exclusive with file.

webhookstring

The webhook to send the payload once the transcription is completed.

Responses