Skip to main content

Try LTX 2.3 Fast: Text to Video in the Workbench

Run this model interactively, tune parameters, and compare outputs.
Model ID: ltx-2-3-fast-text-to-video LTX 2.3 Fast (Text to Video) is the speed-optimized variant of Lightricks LTX-2.3 on fal, generating video with synchronized native audio from a text prompt at lower latency and cost than the standard tier. 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. Audio is generated alongside the visuals and can be disabled.

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-text-to-video",
  "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-fast-text-to-video

Request parameters

Required parameters

FieldTypeDefaultDescription
promptstringThe prompt to use for the generated video.

Optional parameters

FieldTypeDefaultDescription
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"16:9"The aspect ratio of the generated video. One of: 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.