Skip to main content
Back to API Platform

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.

Video Generation
Img2Vid
Audio
Credit Cost
25 credits
Type
Video

API Endpoint

POST
/api/v1/models/flux-3-video/run

Test 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.

Parameters

Input parameters accepted by this model

ParameterTypeDefault
prompt
required
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

16:9
9:16
1:1
4:3
3:4
21:9

Example Outputs

Real outputs generated by this model

View Details

Vertical shot of a parkour athlete vaulting across rooftop gaps at sunset, dynamic tracking camera, city sprawling below, sneakers scraping concrete

0 credits
0
View Details

Square product spot of a luxury wristwatch rotating on a black pedestal, dramatic rim lighting sweep, dust particles in the beam, deep ambient tone

0 credits
0
View Details

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

0 credits
0
View Details

A watchmaker's hands assembling tiny gears under a magnifying lamp, extreme macro, ticking grows louder as the watch comes alive

0 credits
0
View Details

Golden retriever puppies tumbling through a sprinkler on a summer lawn, slow motion, joyful and bright, children laughing off-screen

0 credits
0
View Details

An old steam train crossing a stone viaduct through misty highlands, billowing smoke, distant whistle echoing across the valley

0 credits
0
View Details

A claymation-style penguin waddling across ice and slipping comically, stop-motion aesthetic, playful sound design

0 credits
0
View Details

A paper boat drifting down a rain gutter stream, low angle following shot, raindrops rippling the water, gentle and nostalgic

0 credits
0
View Details

Northern lights dancing over a snow-covered pine forest, stars visible, slow upward tilt, ethereal ambient tones

0 credits
0
View Details

Street food vendor tossing noodles in a flaming wok at a bustling night market, steam and fire, sizzling sounds, handheld energy

0 credits
0
View Details

First-person view flying through a canyon of towering red rock formations, fast banking turns, wind rushing past

0 credits
0
View Details

A cozy cabin interior during a snowstorm, fireplace crackling, camera slowly pushes toward the frosted window, warm and inviting

0 credits
0
View Details

A humpback whale breaching in slow motion at sunset, ocean spray catching the light, epic orchestral swell

0 credits
0
View Details

A medieval blacksmith hammering glowing steel in a dark forge, sparks flying with each strike, rhythmic metallic clangs

0 credits
0
View Details

Product shot of a perfume bottle on black marble, water droplets cascading around it in slow motion, studio lighting sweep

0 credits
0
View Details

A ballet dancer rehearsing alone in a dusty studio, shafts of window light, slow orbiting camera, piano notes echoing softly

0 credits
0
View Details

A luxury sports car driving along a coastal cliff road at sunset, aerial chase shot, waves crashing below, engine note echoing

0 credits
0
View Details

Macro shot of a honeybee landing on a sunflower, pollen drifting in sunbeams, extreme detail, gentle buzzing

0 credits
0
View Details

Anime-style schoolgirl running along a cherry-blossom lined river path, petals swirling in the wind, vibrant spring colors, upbeat mood

0 credits
0
View Details

A stylized 3D animated robot tending a rooftop garden at sunrise, cheerful and whimsical, Pixar-like lighting, birds chirping

0 credits
0
View Details

An astronaut floating inside a space station, Earth rotating slowly through the window behind, subtle lens flare, quiet hum of machinery

0 credits
0
View Details

A barista pouring latte art in slow motion, steam rising, warm cafe lighting, shallow depth of field, soft jazz in the background

0 credits
0
View Details

A red fox trotting through fresh snow in a birch forest, low tracking shot at eye level, breath visible in cold air, crunching footsteps

0 credits
0
View Details

Time-lapse style clouds rolling over a desert mesa at sunset, colors shifting from amber to violet, wide establishing shot

0 credits
0
View Details

A rain-soaked neon street in Tokyo at night, reflections shimmering on wet asphalt, a lone cyclist passes through frame, soft synth ambience

0 credits
0
View Details

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

0 credits
0
View Details

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

0 credits
0

Code Examples

Text → video — copy and paste to get started

bash
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)

json
{
  "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

json
{
  "jobId": "job_abc123...",
  "status": "completed",
  "output": {
    "video": "https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.mp4"
  },
  "creditCost": 25,
  "expiresAt": "2026-08-08T19:39:46Z"
}