LTX23 Standard AV
LTX23 video API
API-key required
LTX23 API Tester
Test the public image-to-video API with the same key-authenticated route external callers use. The request is brokered to the Standard AV pool.
Supported endpoints
- POST /api/ltx23/v1/videos/generations
- GET /api/ltx23/v1/videos/{request_id}
Accepted image sources
Use a public image URL, a same-site/uploads/...path, or a data URL for direct browser smoke tests.
Generation sample
Server-to-server request against the public video API.
curl -sS \
-X POST \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"model": "ltx23-standard",
"prompt": "A cinematic product shot with gentle camera motion, shallow depth of field, and soft studio light.",
"image": {
"url": "/uploads/generations/image/example.png"
},
"duration": 5,
"aspect_ratio": "16:9",
"resolution": "720p",
"seed": -1
}' \
"https://kaleidovid.com/api/ltx23/v1/videos/generations"Status sample
Poll the request ID returned by the generation call.
curl -sS \
-H "x-api-key: YOUR_API_KEY" \
"https://kaleidovid.com/api/ltx23/v1/videos/{request_id}"Live tester
Paste a raw team API key, choose generation settings, and submit a real Standard AV request.
Live response
{
"message": "Response JSON will appear here."
}