Skip to main content
Version: Latest

Video Generation

Enter a topic to generate a video about that topic.


1. API endpoint

POST https://app.aistudios.com/api/odin/v3/tools/video-generator

2. Request parameter

keydesctyperequireddefault
topicTopic of the video to be generatedStringtrue-

3. Response parameters

keydesctype
downloadUrlURL of the generated video dataString
info

The generated video data can be deleted at any time, so you should download and use the video instead of using the generated URL directly.


4. Sample Request

curl https://app.aistudios.com/api/odin/v3/tools/video-generator  \
-H "Authorization: ${API KEY}" \
-H "Content-Type: application/json" \
-X POST \
-d '{
"topic": "Lorem Ipsum is simply dummy text of the printing and typesetting industry.\nLorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book."
}'