curl -X POST \
<BASE_URL>/describe-video \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY' \
-d '{
"video_url": "https://example.com/video.mp4",
"brand_description": "Brand X"
}'
{
"description": "This is the description of the video."
}
Body
This endpoint will generate a description of a video.
This is the video url of the video you want to generate description for.
This is extra information about the brand that the video is for.
Response
curl -X POST \
<BASE_URL>/describe-video \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY' \
-d '{
"video_url": "https://example.com/video.mp4",
"brand_description": "Brand X"
}'
{
"description": "This is the description of the video."
}