Routeway Logo
Back to Models
Black Forest Labs

FLUX.1 [schnell]

Available

Description

A lightning-fast text-to-image model from Black Forest Labs, optimized for rapid generation and scalable creative workflows.

At a Glance

Key pricing and model details available for this model.

Starting price

$0.0014

per image

Hallucination rate

0%

Supported sizes

1792x1024, 1024x1792, 1024x768, 768x1024, 1080x1350

Image Pricing

Image generation pricing currently exposed by the models API.

Starting price

$0.0014

per image

Resolution Pricing

Resolution-specific prices returned for this image model.

1024x1792$0.0014
1024x768$0.0014
1080x1350$0.0014
1792x1024$0.0014
768x1024$0.0014
auto$0.0014

Image Details

Additional image-related pricing and format support.

Pricing unitper image
Supported sizes
1792x1024
1024x1792
1024x768
768x1024
1080x1350

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-schnell',
    prompt: 'A futuristic city skyline at sunset',
    size: '1024x1024',
  })
});

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