Skip to main content

Try LTX-2.3 Pro in the Workbench

Run this model interactively, tune parameters, and compare outputs.
Model ID: ltx-2-3-pro LTX-2.3 22B - Image to Video is a diffusion transformer that excels in generating high-resolution video clips from an input image and text prompt, producing up to 4K resolution at 25 FPS with options for synchronized audio. Some other noteworthy features of LTX-2.3 22B - Image to Video include multi-keyframe conditioning for scene control, 3D camera logic for realistic movements, and LoRA fine-tuning support.
MetricValue
Parameter Count22 billion
Mixture of ExpertsNo

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-pro",
  "prompt": "<prompt>"
}'

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-pro

Request parameters

Required parameters

FieldTypeDefaultDescription
promptstringText prompt describing the video to generate

Optional parameters

FieldTypeDefaultDescription
input_imagestringFirst frame image for image-to-video generation Format: uri.
last_frame_imagestringLast frame image. When provided, the video interpolates between the first frame and this last frame. Format: uri.
taskstring"image_to_video"The generation task (fixed for this model) One of: image_to_video.
resolutionstring"1080p"Resolution quality of the generated video One of: 1080p, 2k, 4k.
durationinteger6Duration of the video in seconds One of: 6, 8, 10.
aspect_ratiostring"16:9"Aspect ratio of the generated video One of: 16:9, 9:16.
fpsinteger25Frame rate in frames per second One of: 24, 25, 48, 50.
camera_motionstring"none"Camera motion effect to apply to the generated video. Use ‘none’ for no camera motion. One of: none, dolly_in, dolly_out, dolly_left, dolly_right, jib_up, jib_down, static, focus_shift.
generate_audiobooleantrueGenerate audio for the video