MODEL IDrundiffusion:130@100
live

Juggernaut Pro Flux

RunDiffusion
by RunDiffusion

Juggernaut Pro Flux is a Flux based text to image model for sharp photorealistic renders. It combines Juggernaut Base with RunDiffusion Photo, improves texture realism, reduces background blur, and preserves depth of field. Built for production grade visual workflows.

Juggernaut Pro Flux

API Options

Platform-level options for task execution and delivery.

taskType

stringrequiredvalue: imageInference

Identifier for the type of task being performed

taskUUID

stringrequiredUUID v4

UUID v4 identifier for tracking tasks and matching async responses. Must be unique per task.

outputType

stringdefault: URL

Image output type.

Allowed values3 values

outputFormat

stringdefault: JPG

Specifies the file format of the generated output. The available values depend on the task type and the specific model's capabilities.

  • `JPG`: Best for photorealistic images with smaller file sizes (no transparency).
  • `PNG`: Lossless compression, supports high quality and transparency (alpha channel).
  • `WEBP`: Modern format providing superior compression and transparency support.
**Transparency**: If you are using features like background removal or LayerDiffuse that require transparency, you must select a format that supports an alpha channel (e.g., `PNG`, `WEBP`, `TIFF`). `JPG` does not support transparency.
Allowed values3 values

outputQuality

integermin: 20max: 99default: 95

Compression quality of the output. Higher values preserve quality but increase file size.

webhookURL

stringURI

Specifies a webhook URL where JSON responses will be sent via HTTP POST when generation tasks complete. For batch requests with multiple results, each completed item triggers a separate webhook call as it becomes available.

Learn more1 resource

deliveryMethod

stringdefault: sync

Determines how the API delivers task results.

Allowed values2 values
Returns complete results directly in the API response.
Returns an immediate acknowledgment with the task UUID. Poll for results using getResponse.
Learn more1 resource

uploadEndpoint

stringURI

Specifies a URL where the generated content will be automatically uploaded using the HTTP PUT method. The raw binary data of the media file is sent directly as the request body. For secure uploads to cloud storage, use presigned URLs that include temporary authentication credentials.

Common use cases:

  • Cloud storage: Upload directly to S3 buckets, Google Cloud Storage, or Azure Blob Storage using presigned URLs.
  • CDN integration: Upload to content delivery networks for immediate distribution.
// S3 presigned URL for secure upload
https://your-bucket.s3.amazonaws.com/generated/content.mp4?X-Amz-Signature=abc123&X-Amz-Expires=3600

// Google Cloud Storage presigned URL
https://storage.googleapis.com/your-bucket/content.jpg?X-Goog-Signature=xyz789

// Custom storage endpoint
https://storage.example.com/uploads/generated-image.jpg

The content data will be sent as the request body to the specified URL when generation is complete.

safety

object

Content safety checking configuration for image generation.

Properties1 property
safety » checkContent

checkContent

booleandefault: false

Enable or disable content safety checking.

ttl

integermin: 60

Time-to-live (TTL) in seconds for generated content. Only applies when outputType is URL.

includeCost

booleandefault: false

Include task cost in the response.

numberResults

integermin: 1max: 20default: 1

Number of results to generate. Each result uses a different seed, producing variations of the same parameters.

Advanced caching mechanisms to speed up generation.

Properties10 properties
acceleratorOptions » cacheEndStep

cacheEndStep

integermin: 1

Absolute step number to end caching. Must be greater than cacheStartStep and less than or equal to steps.

acceleratorOptions » cacheEndStepPercentage

cacheEndStepPercentage

integermin: 1max: 100

Percentage of steps to end caching. Alternative to cacheEndStep. Must be greater than cacheStartStepPercentage.

acceleratorOptions » cacheMaxConsecutiveSteps

cacheMaxConsecutiveSteps

integermin: 1max: 5default: 3

Limits the maximum number of consecutive steps that can use cached computations before forcing a fresh computation.

acceleratorOptions » cacheStartStep

cacheStartStep

integermin: 0

Absolute step number to start caching. Must be less than cacheEndStep.

acceleratorOptions » cacheStartStepPercentage

cacheStartStepPercentage

integermin: 0max: 99

Percentage of steps to start caching. Alternative to cacheStartStep. Must be less than cacheEndStepPercentage.

acceleratorOptions » teaCache

teaCache

booleandefault: false

TeaCache acceleration for transformer-based models. Estimates step differences to skip redundant computations.

acceleratorOptions » teaCacheDistance

teaCacheDistance

floatmin: 0max: 1step: 0.01default: 0.5

Controls the aggressiveness of the TeaCache feature. Lower values prioritize quality, higher values prioritize speed.

acceleratorOptions » dbCache

dbCache

booleandefault: false

DB Cache (CacheDiT) acceleration. Caches and reuses intermediate transformer block outputs to skip redundant computations.

acceleratorOptions » dbCacheThreshold

dbCacheThreshold

floatmin: 0max: 1step: 0.01default: 0.25

Controls the sensitivity threshold for DB Cache. Lower values reuse cached blocks more aggressively, higher values prioritize quality.

acceleratorOptions » dbCacheSkipInterval

dbCacheSkipInterval

integermin: 1default: 5

Controls how many steps to skip between cache refreshes. Higher values skip more steps for faster generation at the cost of quality.

Inputs

Input resources for the task (images, audio, etc). These must be nested inside the inputs object.

inputs » seedImage

seedImage

string

Image used as a starting point for the generation (UUID, URL, Data URI, or Base64).

Learn more3 resources
inputs » maskImage

maskImage

string

Image used to specify which areas of the seed image should be edited (UUID, URL, Data URI, or Base64).

Learn more1 resource

Core Parameters

Primary parameters that define the task output.

model

stringrequiredvalue: rundiffusion:130@100

Identifier of the model to use for generation.

Learn more3 resources

positivePrompt

stringrequiredmin: 2max: 3000

Text prompt describing elements to include in the generated output.

Learn more1 resource

negativePrompt

stringmin: 2max: 3000

Prompt to guide what to exclude from generation. Ignored when guidance is disabled (CFGScale ≤ 1).

Learn more1 resource

width

integerrequiredmin: 128max: 2048step: 64

Width of the generated media in pixels.

Learn more2 resources

height

integerrequiredmin: 128max: 2048step: 64

Height of the generated media in pixels.

Learn more2 resources

seed

integermin: 0max: 9223372036854776000

Random seed for reproducible generation. When not provided, a random seed is generated in the unsigned 32-bit range.

Learn more1 resource

steps

integermin: 1max: 50

Total number of denoising steps. Higher values generally produce more detailed results but take longer.

Learn more1 resource

scheduler

string

Scheduler to use for the diffusion process.

Allowed values75 values
Learn more2 resources

CFGScale

floatmin: 0max: 20step: 0.01

Guidance scale representing how closely the output will resemble the prompt. Higher values produce results more aligned with the prompt.

Learn more1 resource

strength

floatmin: 0max: 1step: 0.01default: 0.8

Strength of the transformation. Lower values result in more influence from the original input.

Learn more3 resources

maskMargin

integermin: 32max: 128

Extra context pixels around the masked region during inpainting. The model zooms into the masked area with these additional pixels for better integration.

Learn more1 resource

Defines the syntax to be used for prompt weighting.

Prompt weighting allows you to adjust how strongly different parts of your prompt influence the generated image. Choose between compel notation with advanced weighting operations or sdEmbeds for simple emphasis adjustments.

View Compel syntax

Adds 0.2 seconds to image inference time and incurs additional costs.

When compel syntax is selected, you can use the following notation in prompts:

Weighting

Syntax: + - (word)0.9

Increase or decrease the attention given to specific words or phrases.

Examples:

  • Single words: small+ dog, pixar style
  • Multiple words: small dog, (pixar style)-
  • Multiple symbols for more effect: small+++ dog, pixar style
  • Nested weighting: (small+ dog)++, pixar style
  • Explicit weight percentage: small dog, (pixar)1.2 style

Blend

Syntax: .blend()

Merge multiple conditioning prompts.

Example: ("small dog", "robot").blend(1, 0.8)

Conjunction

Syntax: .and()

Break a prompt into multiple clauses and pass them separately.

Example: ("small dog", "pixar style").and()

View sdEmbeds syntax

When sdEmbeds syntax is selected, you can use the following notation in prompts:

Weighting

Syntax: (text) (text:number) [text]

Use parentheses () to increase attention, square brackets [] to decrease it. Add a number after the text to specify a custom multiplier.

Examples:

  • Single words: (small) dog, pixar style
  • Multiple words: small dog, [pixar style]
  • Higher emphasis: (small:2.5) dog, pixar style
  • Combined emphasis: (small dog:1.5), pixar style
Allowed values1 value
Learn more1 resource

outpaint

object

Pixel extensions for each boundary direction of the source image. At least one direction is required.

Learn more1 resource
Properties4 properties
outpaint » top

top

integermin: 0

Number of pixels to extend to the top.

outpaint » bottom

bottom

integermin: 0

Number of pixels to extend to the bottom.

outpaint » left

left

integermin: 0

Number of pixels to extend to the left.

outpaint » right

right

integermin: 0

Number of pixels to extend to the right.

lora

array of objectsmin items: 1

With LoRA (Low-Rank Adaptation), you can adapt a model to specific styles or features by emphasizing particular aspects of the data. This technique enhances the quality and relevance of generated content and can be especially useful when the output needs to adhere to a specific artistic style or follow particular guidelines.

Multiple LoRA models can be used simultaneously to achieve different adaptation goals.

Examples1 example
"lora": [
  {
    "model": "<lora-model-air>",
    "weight": 0.8
  }
]
Learn more1 resource
Properties3 properties
lora » model

model

stringrequired

LoRA model identifier.

lora » weight

weight

floatmin: -4max: 4step: 0.01default: 1

Strength of the LoRA influence. A value of 0 means no influence. Higher values increase the influence, and negative values can be used to steer away from the LoRA's style.

lora » transformer

transformer

stringdefault: both

Transformer stages to apply LoRA. Some video models use separate high-noise and low-noise processing stages, and LoRAs can be selectively applied to optimize their effectiveness.

Allowed values3 values
Apply LoRA only to the high-noise processing stage (coarse structure and early generation steps).
Apply LoRA only to the low-noise processing stage (fine details and later generation steps).
Apply LoRA to both stages for full coverage.

controlNet

array of objectsmin items: 1

With ControlNet, you can provide a guide image to help the model generate images that align with the desired structure. This guide image can be generated with our ControlNet preprocessing tool, extracting guidance information from an input image. The guide image can be in the form of an edge map, a pose, a depth estimation or any other type of control image that guides the generation process via the ControlNet model.

Multiple ControlNet models can be used at the same time to provide different types of guidance information to the model.

Examples1 example
"controlNet": [
  {
    "model": "<controlnet-model-air>",
    "guideImage": "c64351d5-4c59-42f7-95e1-eace013eddab",
    "weight": 0.7,
    "startStep": 0,
    "endStep": 20,
    "controlMode": "controlnet"
  }
]
Learn more2 resources
Properties8 properties
controlNet » model

model

stringrequired

ControlNet model identifier.

controlNet » weight

weight

floatmin: -4max: 4step: 0.01default: 1

Strength of the ControlNet influence. A value of 0 means no influence. Higher values increase the influence, and negative values can be used to steer away from the guide image.

controlNet » guideImage

guideImage

stringrequired

Reference image for ControlNet guidance (UUID, URL, Data URI, or Base64).

controlNet » controlMode

controlMode

stringdefault: balanced

ControlNet guidance mode.

Allowed values3 values
Equal weight between ControlNet and prompt.
Prioritize ControlNet guidance.
Prioritize prompt guidance.
controlNet » endStep

endStep

integermin: 1

Absolute step number to end ControlNet influence. Must be greater than startStep and less than or equal to steps.

controlNet » endStepPercentage

endStepPercentage

integermin: 1max: 100

Percentage of steps to end ControlNet influence. Must be greater than startStepPercentage.

controlNet » startStep

startStep

integermin: 0

Absolute step number to start ControlNet influence. Must be less than endStep.

controlNet » startStepPercentage

startStepPercentage

integermin: 0max: 99

Percentage of steps to start ControlNet influence. Must be less than endStepPercentage.

ipAdapters

array of objectsmin items: 1

IP-Adapters enable image-prompted generation, allowing you to use reference images to guide the style and content of your generations. Multiple IP Adapters can be used simultaneously.

Examples1 example
"ipAdapters": [
  {
    "model": "<ip-adapter-model-air>",
    "guideImages": ["c64351d5-4c59-42f7-95e1-eace013eddab"],
    "weight": 0.75
  },
  {
    "model": "<ip-adapter-model-air>",
    "guideImages": ["d7e8f9a0-2b5c-4e7f-a1d3-9c8b7a6e5d4f"],
    "weight": 0.5
  }
]
Learn more1 resource
Properties3 properties
ipAdapters » model

model

stringrequired

We make use of the AIR system to identify IP-Adapter models. This identifier is a unique string that represents a specific model.

Supported models list
AIR IDModel Name
runware:55@1IP Adapter SDXL
runware:55@2IP Adapter SDXL Plus
runware:55@3IP Adapter SDXL Plus Face
runware:55@4IP Adapter SDXL Vit-H
runware:55@5IP Adapter SD 1.5
runware:55@6IP Adapter SD 1.5 Plus
runware:55@7IP Adapter SD 1.5 Light
runware:55@8IP Adapter SD 1.5 Plus Face
runware:55@10IP Adapter SD 1.5 Vit-G
ipAdapters » weight

weight

floatmin: -4max: 4step: 0.01default: 1

Strength of the IP-Adapter influence. A value of 0 means no influence. Higher values increase the influence, and negative values can be used to steer away from the reference.

ipAdapters » guideImages

guideImages

array of stringsrequiredmin items: 1

Images to guide the IP-Adapter (UUID, URL, Data URI, or Base64).

True Classifier-Free Guidance scale. Higher values increase prompt adherence at the cost of quality.

Features

Standalone addons and post-processing features.

ultralytics

object

Configuration object for Ultralytics face enhancement during generation. This feature uses face detection and inpainting to improve facial details in the same generation step, without requiring post-processing.

Face enhancement is available for Stable Diffusion 1.X, SDXL, and FLUX models. The system automatically detects faces and applies targeted refinement to improve quality while maintaining consistency with the overall generation.

Properties9 properties
ultralytics » CFGScale

CFGScale

floatmin: 0max: 50step: 0.1default: 8

Face refinement guidance scale.

ultralytics » confidence

confidence

floatmin: 0max: 1step: 0.01default: 0.9

Confidence threshold for detection.

ultralytics » inpaintSize

inpaintSize

integermin: 128max: 2048default: 1024

Image size (in pixels) to use for each inpainting region. YOLO detects faces, crops the region, and scales it to this size before running diffusion. Set so most faces land in the 2–4× range of their original pixel size. Going beyond 8× may degrade identity resemblance.

ultralytics » maskBlur

maskBlur

integermin: 0max: 100default: 5

Mask feathering amount. Higher values create softer transitions between the enhanced face region and surrounding areas.

ultralytics » maskPadding

maskPadding

integermin: 0max: 20default: 5

Padding around detected face in pixels. Expands the refinement area to include surrounding context like hair and neck.

ultralytics » negativePrompt

Negative prompt for detection.

ultralytics » positivePrompt

Positive prompt for detection.

ultralytics » steps

steps

integermin: 1max: 100default: 20

Number of face refinement steps.

ultralytics » strength

strength

floatmax: 1step: 0.01default: 0.3

Refinement strength. Lower values preserve more of the original, higher values allow more aggressive reconstruction.

hiresFix

boolean | object

Two-stage generation for improved resolution and detail. The model generates at a lower resolution first, then upscales and refines the result in a second pass. Can be enabled with true for default settings, or configured as an object for fine-grained control over the upscaling model, steps, and strength.

When using the object form, the model parameter is required. Available upscaling models:

ModelNameUpscale Factor
runware:504@1RealESRGAN_x4plus4x
runware:realesrgan@anime-6bRealESRGAN_x4plus_anime_6B4x
runware:esrgan@animesharp4x-AnimeSharp4x
runware:esrgan@ultrasharp4x-UltraSharp4x
"hiresFix": true
"hiresFix": {
  "model": "runware:esrgan@ultrasharp",
  "steps": 15,
  "strength": 0.6
}
Allowed values1 value

layerDiffuse

booleandefault: false

Enables LayerDiffuse technology, which allows for the direct generation of images with transparency (alpha channels).

When enabled, this feature applies the necessary LwwwwwwoRA and VAE components to produce high-quality transparent images without requiring post-processing background removal.

This is particularly useful for creating product images, overlays, composites, and other content that requires transparency. The output must be in a format that supports transparency, such as PNG.

Note: This feature is only available for the FLUX model architecture. It automatically applies the equivalent of:


  "lora": [{ "model": "runware:120@2" }],
  "vae": "runware:120@4"
Examples1 example
"outputFormat": "png",
"advancedFeatures": {
  "layerDiffuse": true
}
Learn more1 resource

pulid

object

PuLID (Pure and Lightning ID Customization) enables fast and high-quality identity customization for text-to-image generation. This object allows you to configure settings for transferring facial characteristics from a reference image to generated images with high fidelity.

CFGstartStep and CFGstartStepPercentage are mutually exclusive, they both control when CFG guidance begins, but as an absolute step number or a percentage respectively. Use one or the other, not both.

Examples1 example
"puLID": {
  "images": ["59a2edc2-45e6-429f-be5f-7ded59b92046"],
  "idWeight": 1,
  "trueCFGScale": 1.5,
  "CFGStartStep": 3
}
Properties5 properties
pulid » CFGstartStep

CFGstartStep

integermin: 0

Absolute step number to start identity influence. Must be less than steps.

pulid » CFGstartStepPercentage

CFGstartStepPercentage

integermin: 0max: 99

Percentage of steps to start identity influence.

pulid » idWeight

idWeight

floatmin: 0max: 3step: 0.01default: 1

Identity preservation strength. Higher values create closer resemblance to the reference face.

pulid » images

images

array of stringsrequireditems: 1

Reference images for identity customization (UUID, URL, Data URI, or Base64).

pulid » trueCFGScale

trueCFGScale

floatmin: 0max: 10step: 0.1

Guidance scale for identity embedding.