Speech-to-text with word-level timing via ElevenLabs. 10 credits.
cURL
curl --request POST \ --url https://api.vidjutsu.ai/v1/transcribe \ --header 'Content-Type: application/json' \ --data ' { "mediaUrl": "<string>", "language": "<string>" } '
{ "transcript": "<string>", "words": [ { "word": "<string>", "start": 123, "end": 123 } ], "language": "<string>", "duration": 123 }
URL of the video or audio to transcribe
Language code (e.g. 'en', 'es'). Auto-detected if omitted
The request has succeeded.
Show child attributes