Skip to main content
Back to API Platform

Flux Kontext Pro API

Advanced model with state-of-the-art performance for both generation and editing. Integrate this model via REST with endpoint docs, parameters, and code examples.

Image Generation
Img2Img
LoRA
Editing
Content moderation disabled
Credit Cost
1 credit
Type
image

API Endpoint

POST
/api/v1/models/flux-kontext-pro/run

Parameters

Input parameters accepted by this model

ParameterTypeDefault
prompt
required
string
-
model
string
-
aspect_ratio
enum
-
num_outputs
integer
1
seed
integer
-

Supported Aspect Ratios

1:1
16:9
9:16
21:9
9:21
3:2
2:3
4:5
5:4

Example Outputs

Real outputs generated by this model

a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."
View Details

a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."

1 credits
6.3s
a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."
View Details

a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."

1 credits
6.4s
A dramatic low-angle photograph of a master martial artist mid-strike inside a sleek modern dojo, shattering a wooden board that explodes into thousands of glowing purple and pink pixel fragments that scatter through the air like embers. The dojo has polished concrete floors, floor-to-ceiling windows revealing a rain-soaked Tokyo cityscape at night, and minimal Japanese architectural details — clean wooden beams, a torii gate silhouette visible through the glass. The pixel fragments cast colored light across the fighter's face and the wet floor reflections. Shot on Sony A7R V, 35mm f/1.4, shallow depth of field, dramatic side lighting from a single overhead spotlight cutting through atmospheric haze, rain streaks visible on the windows. Hyperrealistic, editorial photography, 8K resolution
View Details

A dramatic low-angle photograph of a master martial artist mid-strike inside a sleek modern dojo, shattering a wooden board that explodes into thousands of glowing purple and pink pixel fragments that scatter through the air like embers. The dojo has polished concrete floors, floor-to-ceiling windows revealing a rain-soaked Tokyo cityscape at night, and minimal Japanese architectural details — clean wooden beams, a torii gate silhouette visible through the glass. The pixel fragments cast colored light across the fighter's face and the wet floor reflections. Shot on Sony A7R V, 35mm f/1.4, shallow depth of field, dramatic side lighting from a single overhead spotlight cutting through atmospheric haze, rain streaks visible on the windows. Hyperrealistic, editorial photography, 8K resolution

1 credits
9.5s
A luminous pixel dojo temple floating above neon-lit clouds at twilight, its walls made of shimmering translucent screens displaying cascading AI-generated artwork — portraits, landscapes, abstract forms shifting and morphing in real time. Purple and pink energy streams spiral upward from the temple's rooftop pagoda, scattering into thousands of glowing pixel particles that dissolve into stars. A lone creator stands at the temple entrance, silhouetted against the radiant interior light, brush in hand, surrounded by floating holographic canvases. The architecture blends traditional Japanese dojo aesthetics with futuristic cyberpunk elements — wooden beams interlaced with fiber optic cables, paper screens replaced by translucent OLED panels. Dramatic volumetric lighting, ultra-detailed, cinematic composition, 8K quality, purple-to-pink gradient atmosphere
View Details

A luminous pixel dojo temple floating above neon-lit clouds at twilight, its walls made of shimmering translucent screens displaying cascading AI-generated artwork — portraits, landscapes, abstract forms shifting and morphing in real time. Purple and pink energy streams spiral upward from the temple's rooftop pagoda, scattering into thousands of glowing pixel particles that dissolve into stars. A lone creator stands at the temple entrance, silhouetted against the radiant interior light, brush in hand, surrounded by floating holographic canvases. The architecture blends traditional Japanese dojo aesthetics with futuristic cyberpunk elements — wooden beams interlaced with fiber optic cables, paper screens replaced by translucent OLED panels. Dramatic volumetric lighting, ultra-detailed, cinematic composition, 8K quality, purple-to-pink gradient atmosphere

1 credits
9.5s

Code Examples

Copy and paste to get started

bash
curl -X POST "https://pixeldojo.ai/api/v1/models/flux-kontext-pro/run" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "A beautiful mountain landscape at golden hour",
    "aspect_ratio": "1:1"
  }'

Response Format

Submit Response (202 Accepted)

json
{
  "jobId": "job_abc123...",
  "status": "pending",
  "statusUrl": "https://pixeldojo.ai/api/v1/jobs/job_abc123...",
  "creditCost": 1,
  "creditsRemaining": 95,
  "expiresAt": "2025-01-23T12:00:00Z"
}

Completed Response

json
{
  "jobId": "job_abc123...",
  "status": "completed",
  "output": {
    "images": [
      "https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.png"
    ]
  },
  "creditCost": 1,
  "expiresAt": "2025-01-23T12:00:00Z"
}