Skip to main content

Try LTX 2.3 Fast: Image to Video in the Workbench

Run this model interactively, tune parameters, and compare outputs.
Model ID: ltx-2-3-fast-image-to-video LTX 2.3 Fast (Image to Video) is the speed-optimized variant of Lightricks LTX-2.3 on fal, animating a starting image into video with synchronized native audio at lower latency and cost than the standard tier. An optional end image can be supplied to generate a transition between the start and end frames. It supports 1080p, 1440p, and 2160p output at 24/25/48/50 FPS. The fast model supports clip durations from 6 up to 20 seconds; durations longer than 10 seconds (12, 14, 16, 18, 20) require 25 FPS and 1080p resolution. Input images may be PNG, JPEG, WebP, AVIF, or HEIF.

Example request

Use the Workbench as a request builder: configure parameters for this model in the UI, then open the API tab to copy the exact cURL or Python call.
This blocks until the video is ready (typically 5-15 minutes). Prefer Async or Async with SSE for anything beyond quick experimentation.See the video generation reference for more details.
curl -X POST https://hub.oxen.ai/api/ai/videos/generate \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OXEN_API_KEY" \
  -d '{
  "model": "ltx-2-3-fast-image-to-video",
  "prompt": "<prompt>",
  "input_image": "https://hub.oxen.ai/api/repos/elau/assets/file/main/bloxy/bloxy_cropped_512x512.png"
}'

Fetch model details

The models endpoint returns the full model object, including its json_request_schema.
curl -H "Authorization: Bearer $OXEN_API_KEY" https://hub.oxen.ai/api/ai/models/ltx-2-3-fast-image-to-video

Request parameters

Required parameters

FieldTypeDefaultDescription
promptstringThe prompt to generate the video from.
input_imagestringURL of the image to generate the video from. Supports PNG, JPEG, WebP, AVIF, and HEIF formats. Format: uri.

Optional parameters

FieldTypeDefaultDescription
last_frame_imagestringThe URL of the end image to use for the generated video. When provided, generates a transition video between start and end frames. Format: uri.
durationinteger6The duration of the generated video in seconds. The fast model supports 6-20 seconds. Durations longer than 10 seconds (12, 14, 16, 18, 20) are only supported with 25 FPS and 1080p resolution. One of: 6, 8, 10, 12, 14, 16, 18, 20.
resolutionstring"1080p"The resolution of the generated video. One of: 1080p, 1440p, 2160p.
aspect_ratiostring"auto"The aspect ratio of the generated video. If ‘auto’, the aspect ratio will be determined automatically based on the input image. One of: auto, 16:9, 9:16.
fpsinteger25The frames per second of the generated video. One of: 24, 25, 48, 50.
generate_audiobooleantrueWhether to generate audio for the generated video.