Routeway Logo
Back to Models
Black Forest Labs

Flux Pro V1.1 Ultra

Available

Description

Excellent image quality, prompt adherence, and output diversity.

At a Glance

Key pricing and model details available for this model.

Starting price

$0.07

per image

Hallucination rate

0%

Supported sizes

2048x2048, 3136x1344, 2752x1536, 2304x1792, 1792x2304, 1536x2752, 1344x3136

Image Pricing

Image generation pricing currently exposed by the models API.

Starting price

$0.07

per image

Resolution Pricing

Resolution-specific prices returned for this image model.

1344x3136$0.07
1536x2752$0.07
1792x2304$0.07
2048x2048$0.07
2304x1792$0.07
2752x1536$0.07
3136x1344$0.07
auto$0.07

Image Details

Additional image-related pricing and format support.

Pricing unitper image
Supported sizes
2048x2048
3136x1344
2752x1536
2304x1792
1792x2304
1536x2752
1344x3136

Feature Availability

Capabilities explicitly listed in the current payload.

Image

Available

Yes

Vision

Not listed

No

Function calling

Not listed

No

Reasoning

Not listed

No

Code Samples

Quick start with the Routeway API

const response = await fetch('https://api.routeway.ai/v1/images/generations', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer <YOUR_API_KEY>',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    model: 'flux-1.1-pro',
    prompt: 'A futuristic city skyline at sunset',
    size: '1024x1024',
  })
});

const imageData = await response.json();
console.log(imageData);