Skip to main content

Try LTX-2.3 Pro 22B IC-LoRA Union Control in the Workbench

Run this model interactively, tune parameters, and compare outputs.
Model ID: ltx-2-3-pro-22b-IC-LoRA-Union-Control LTX-2.3 Pro 22B IC LoRA Union Control is a high-fidelity video generation model for text-to-video and image-conditioned workflows. It supports prompt-driven generation, camera control, and optional keyframe conditioning for controlled cinematic outputs.

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-22b-IC-LoRA-Union-Control",
  "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-22b-IC-LoRA-Union-Control

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.
input_videostringPrimary conditioning video URL. Format: uri.
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.
resolutionstring"1080p"Resolution quality of the generated video One of: 1080p, 2k, 4k.
fpsinteger25Frame rate in frames per second One of: 24, 25, 48, 50.
video_conditioning_strengthnumber1.0Default strength applied to conditioning videos when per-item strength is not provided. Range: 0.0 – 1.0.
conditioning_attention_strengthnumber1.0Attention strength for IC-LoRA conditioning. Range: 0.0 – 1.0.
seedintegerRandom seed. Set for reproducible generation.