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.

video_url
string

This is the video url of the video you want to generate description for.

brand_description
string

This is extra information about the brand that the video is for.

Response

video_description
string

The video description.

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."
}