POST
/
api
/
transcribeVideo
curl --request POST \
  --url https://api.transcribetube.com/api/transcribeVideo \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '{
  "language": "en",
  "webhookUrl": "http://example.com/webhook",
  "youtubeVideoId": "dQw4w9WgXcQ"
}'

Authorizations

api-key
string
header
required

Body

application/json
language
string
required

The language of the video

Example:

"en"

webhookUrl
string
required

The URL to send the transcription results to

Example:

"http://example.com/webhook"

youtubeVideoId
string
required

The ID of the YouTube video

Example:

"dQw4w9WgXcQ"