curl -X POST \
  <BASE_URL>/generate-motion-image \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: YOUR_API_KEY' \
  -d '{
    "image_url": "https://example.com/image.jpg",
    "size": "16:9"
}'

{
	"motion_image": "https://contentify.app/video.mp4",
}

Body

Generate social media video with a single image.

image_url
string

The content you want to convert into a video.

size
string

Image ratio for the video scuh as 9:16, 16:9 or 1:1.

Response

motion_image
string

This is the URL of the generated video.

curl -X POST \
  <BASE_URL>/generate-motion-image \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: YOUR_API_KEY' \
  -d '{
    "image_url": "https://example.com/image.jpg",
    "size": "16:9"
}'

{
	"motion_image": "https://contentify.app/video.mp4",
}