Back to news

Jun 3, 2026

Caether Imagine 1.5 Preview

caether-imagine-video-1.5-preview, our latest image-to-video model, is now available via the Caether API in preview.

Create API key

Our latest image-to-video model, caether-imagine-video-1.5-preview, is now available via the Caether API in preview.

caether-imagine-video-1.5-preview turns a single still image into fluid, cinematic video. Give it a starting frame and a prompt describing the motion, and it animates the scene — including camera moves, atmosphere, and physics — while staying faithful to your source image. You can generate clips at up to 720p.

Caether Imagine 1.5 generated frames

Animate an image in a few lines of code.

import osimport caether_sdkclient = caether_sdk.Client(api_key=os.getenv("CAETHER_API_KEY"))response = client.video.generate(    prompt="Slow cinematic push-in as embers drift across the battlefield and the helmet's crest stirs in the wind",    model="caether-imagine-video-1.5-preview",    image_url="https://your-host.com/helmet.jpg",    duration=10,    resolution="720p",)print(response.url)

The preview is available to all API users today. Pricing and rate limits are listed in the docs.

Back to news