Ltx 2.3 Text To Video
Playground
Try it on WavespeedAI!LTX-2.3 is a DiT-based audio-video foundation model designed to generate synchronized video and audio within a single model, with improved audio and visual quality as well as enhanced prompt adherence. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Features
LTX-2.3 Text-to-Video
LTX-2.3 is a significant update to the LTX-2 model, featuring improved audio and visual quality with enhanced prompt adherence. As a DiT-based (Diffusion Transformer) audio-video foundation model, it generates synchronized video and audio from text prompts in a single pass, bringing together the core building blocks of modern video generation with open weights and practical execution.
Why Choose This?
-
Improved quality Enhanced audio and visual quality compared to LTX-2, with better prompt adherence and more coherent outputs.
-
Synchronized audio-video Generates video with matching audio in a single model pass, no separate audio production needed.
-
DiT-based architecture Built on Diffusion Transformer technology for high-fidelity, temporally consistent video generation.
-
Flexible resolution Supports 480p, 720p, and 1080p outputs to balance quality and cost.
-
Variable duration Generate clips from 5 to 20 seconds.
Parameters
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the video scene, motion, and audio |
| resolution | No | Output resolution: 480p, 720p (default), or 1080p |
| duration | No | Video length in seconds (5-20) |
| seed | No | Random seed for reproducibility (-1 for random) |
Resolution Options
| Resolution | Best For |
|---|---|
| 480p | Fast previews, iteration, lowest cost |
| 720p | Balanced quality and cost (default) |
| 1080p | Final delivery, maximum detail |
How to Use
- Write your prompt — describe the scene, motion, camera movement, and audio cues.
- Select resolution — 480p for iteration, 720p for balance, 1080p for final output.
- Set duration — 5-20 seconds based on your content needs.
- Run — submit and download the video with synchronized audio.
Pricing
| Resolution | 5s | 10s | 15s | 20s |
|---|---|---|---|---|
| 480p | $0.10 | $0.20 | $0.30 | $0.40 |
| 720p | $0.15 | $0.30 | $0.45 | $0.60 |
| 1080p | $0.20 | $0.40 | $0.60 | $0.80 |
Best Use Cases
- Content Creation — Generate video content with synchronized audio from text descriptions.
- Social Media — Create engaging video posts with cohesive sound.
- Marketing — Produce video ads with matching audio from creative briefs.
- Storytelling — Bring written narratives to life with video and audio.
- Prototyping — Quickly visualize concepts with audio-visual output.
Pro Tips
- Audio is automatic — sound is generated based on visual content and prompt context.
- Describe specific audio when needed (e.g., “rain”, “jazz”, “crowd noise”).
- Keep prompts clear and specific for better prompt adherence.
- Iterate at 480p to dial in content, then render at higher resolution for final output.
- Use fixed seed when comparing prompt variations to isolate changes.
Notes
- Maximum video duration is 20 seconds.
- Width & height must be divisible by 32, frame count must be divisible by 8 + 1.
- For longer content, generate multiple clips and edit together.
- Model is not intended to provide factual information.
Related Models
- LTX-2.3 Image-to-Video — Animate images with synchronized audio.
- LTX-2 19B Text-to-Video — Previous generation model.
Authentication
For authentication details, please refer to the Authentication Guide.
API Endpoints
Submit Task & Query Result
# Submit the task
curl --location --request POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/ltx-2.3/text-to-video" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}" \
--data-raw '{
"resolution": "720p",
"aspect_ratio": "16:9",
"duration": 5,
"seed": -1
}'
# Get the result
curl --location --request GET "https://api.wavespeed.ai/api/v3/predictions/${requestId}/result" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}"
Parameters
Task Submission Parameters
Request Parameters
| Parameter | Type | Required | Default | Range | Description |
|---|---|---|---|---|---|
| prompt | string | Yes | - | The positive prompt for the generation. | |
| resolution | string | No | 720p | 480p, 720p, 1080p | Video resolution. |
| aspect_ratio | string | No | 16:9 | 16:9, 9:16 | Aspect ratio of the video. |
| duration | integer | No | 5 | 5 ~ 20 | The duration of the generated media in seconds. |
| seed | integer | No | -1 | -1 ~ 2147483647 | The random seed to use for the generation. -1 means a random seed will be used. |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data.id | string | Unique identifier for the prediction, Task Id |
| data.model | string | Model ID used for the prediction |
| data.outputs | array | Array of URLs to the generated content (empty when status is not completed) |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.has_nsfw_contents | array | Array of boolean values indicating NSFW detection for each output |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |
Result Request Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| id | string | Yes | - | Task ID |
Result Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data | object | The prediction data object containing all details |
| data.id | string | Unique identifier for the prediction, the ID of the prediction to get |
| data.model | string | Model ID used for the prediction |
| data.outputs | string | Array of URLs to the generated content (empty when status is not completed). |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |