Flux 3 Video API
Flux 3 Video generation. Text-to-video or image-to-video up to 20 seconds with synchronized audio, or extend and transform an existing clip. Integrate this model via REST with endpoint docs, parameters, and code examples.
Get API Key
Create auth keys for apps and agents
See Usage
Track requests, credits, and logs
Buy Credits
Top up prepaid API capacity
API Endpoint
/api/v1/models/flux-3-video/runTest This Model
Run a real request through the API pipeline and inspect the exact input and output your integration will handle. Uses your credits like any API call; failed runs are refunded automatically.
LLM.txt
For AI assistants
Copy this model's documentation into Claude, GPT, or any AI for instant integration help.
/llm/flux-3-video.txtOpenAPI Spec
Swagger compatible
Import into Postman, Swagger UI, or generate client SDKs in any language.
/api/openapiParameters
Input parameters accepted by this model
| Parameter | Type | Default |
|---|---|---|
promptrequired | string | - |
image | url | - |
last_frame_image | url | - |
video | url | - |
resolution | enum | 720p |
aspect_ratio | enum | 16:9 |
duration | integer | 5 |
generate_audio | boolean | true |
Supported Aspect Ratios
Example Outputs
Real outputs generated by this model
Vertical shot of a parkour athlete vaulting across rooftop gaps at sunset, dynamic tracking camera, city sprawling below, sneakers scraping concrete
Square product spot of a luxury wristwatch rotating on a black pedestal, dramatic rim lighting sweep, dust particles in the beam, deep ambient tone
Ultra-wide cinematic drone shot sweeping across a vast desert canyon at golden hour, anamorphic look, dust catching the light, deep engine-less silence broken by wind
A watchmaker's hands assembling tiny gears under a magnifying lamp, extreme macro, ticking grows louder as the watch comes alive
Golden retriever puppies tumbling through a sprinkler on a summer lawn, slow motion, joyful and bright, children laughing off-screen
An old steam train crossing a stone viaduct through misty highlands, billowing smoke, distant whistle echoing across the valley
A claymation-style penguin waddling across ice and slipping comically, stop-motion aesthetic, playful sound design
A paper boat drifting down a rain gutter stream, low angle following shot, raindrops rippling the water, gentle and nostalgic
Northern lights dancing over a snow-covered pine forest, stars visible, slow upward tilt, ethereal ambient tones
Street food vendor tossing noodles in a flaming wok at a bustling night market, steam and fire, sizzling sounds, handheld energy
First-person view flying through a canyon of towering red rock formations, fast banking turns, wind rushing past
A cozy cabin interior during a snowstorm, fireplace crackling, camera slowly pushes toward the frosted window, warm and inviting
A humpback whale breaching in slow motion at sunset, ocean spray catching the light, epic orchestral swell
A medieval blacksmith hammering glowing steel in a dark forge, sparks flying with each strike, rhythmic metallic clangs
Product shot of a perfume bottle on black marble, water droplets cascading around it in slow motion, studio lighting sweep
A ballet dancer rehearsing alone in a dusty studio, shafts of window light, slow orbiting camera, piano notes echoing softly
A luxury sports car driving along a coastal cliff road at sunset, aerial chase shot, waves crashing below, engine note echoing
Macro shot of a honeybee landing on a sunflower, pollen drifting in sunbeams, extreme detail, gentle buzzing
Anime-style schoolgirl running along a cherry-blossom lined river path, petals swirling in the wind, vibrant spring colors, upbeat mood
A stylized 3D animated robot tending a rooftop garden at sunrise, cheerful and whimsical, Pixar-like lighting, birds chirping
An astronaut floating inside a space station, Earth rotating slowly through the window behind, subtle lens flare, quiet hum of machinery
A barista pouring latte art in slow motion, steam rising, warm cafe lighting, shallow depth of field, soft jazz in the background
A red fox trotting through fresh snow in a birch forest, low tracking shot at eye level, breath visible in cold air, crunching footsteps
Time-lapse style clouds rolling over a desert mesa at sunset, colors shifting from amber to violet, wide establishing shot
A rain-soaked neon street in Tokyo at night, reflections shimmering on wet asphalt, a lone cyclist passes through frame, soft synth ambience
A cinematic drone shot gliding over a glacier at golden hour, slow push forward toward jagged ice peaks, volumetric light, ambient wind and distant cracking ice
Close-up of an elderly fisherman's weathered face as he looks out to sea at dawn, gentle camera drift, seagulls calling in the distance
Code Examples
Text → video — copy and paste to get started
curl -X POST "https://pixeldojo.ai/api/v1/models/flux-3-video/run" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "A cinematic drone shot over a glacier at sunrise",
"duration": 5,
"resolution": "720p",
"aspect_ratio": "16:9"
}'Response Format
Submit Response (202 Accepted)
{
"jobId": "job_abc123...",
"status": "pending",
"statusUrl": "https://pixeldojo.ai/api/v1/jobs/job_abc123...",
"creditCost": 25,
"creditsRemaining": 95,
"expiresAt": "2026-08-08T19:39:46Z"
}Completed Response
{
"jobId": "job_abc123...",
"status": "completed",
"output": {
"video": "https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.mp4"
},
"creditCost": 25,
"expiresAt": "2026-08-08T19:39:46Z"
}