FLUX.1 Schnell

Model Information

Display Name: FLUX.1 Schnell

API Model ID: black-forest-labs/flux-1-schnell

Category: Text To Image

Description: FLUX.1 Schnell is a 12 billion parameter text-to-image model developed by Black Forest Labs, designed for speed and efficiency. **Key Features:** - Ultra-fast generation in 1 to 4 inference steps - Sub-second response times for rapid prototyping - Optimized for local development and real-time applications - High-quality output despite minimal steps **Performance:** The model achieves remarkable speed without sacrificing quality, making it ideal for applications requiring quick iterations or real-time image generation. **Use Cases:** - Rapid prototyping and concept visualization - Real-time creative applications - Local development and testing - High-throughput batch processing **Technical Specifications:** - Parameters: 12 billion - Architecture: Rectified Flow Transformer - Output: High-resolution images up to 1024x1024

How to Use This Model

To use FLUX.1 Schnell via the HInow.ai API, use the model ID: black-forest-labs/flux-1-schnell

API Request Example (Chat/Text)


POST https://api.hinow.ai/v1/chat/completions
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "black-forest-labs/flux-1-schnell",
  "messages": [
    {"role": "user", "content": "Your message here"}
  ]
}
              

API Request Example (Image Generation)


POST https://api.hinow.ai/v1/images/generations
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "black-forest-labs/flux-1-schnell",
  "prompt": "Your image description here"
}
              

Pricing

  • total: $0.009

Available Parameters

  • aspect_ratio: Output image aspect ratio (Options: 1:1, 4:3, 3:4, 16:9, 9:16)
  • num_inference_steps: Number of inference steps (1-4) (Options: 1, 2, 3, 4)
  • output_format: Output image format (Options: jpeg, png)

Quick Reference

To use this model, set: "model": "black-forest-labs/flux-1-schnell"

Featured: No

Documentation: https://hinow.ai/models/black-forest-labs/flux-1-schnell

API Endpoint: https://api.hinow.ai/v1

Back to Models
FLUX.1 Schnell

FLUX.1 Schnell

black-forest-labs/flux-1-schnell

$0.0090
per image

About

FLUX.1 Schnell is a 12 billion parameter text-to-image model developed by Black Forest Labs, designed for speed and efficiency.

Key Features:

  • Ultra-fast generation in 1 to 4 inference steps
  • Sub-second response times for rapid prototyping
  • Optimized for local development and real-time applications
  • High-quality output despite minimal steps

Performance:

The model achieves remarkable speed without sacrificing quality, making it ideal for applications requiring quick iterations or real-time image generation.

Use Cases:

  • Rapid prototyping and concept visualization
  • Real-time creative applications
  • Local development and testing
  • High-throughput batch processing

Technical Specifications:

  • Parameters: 12 billion
  • Architecture: Rectified Flow Transformer
  • Output: High-resolution images up to 1024x1024

Capabilities

Text To Image

Parameters

aspect_ratio

Output image aspect ratio

1:14:33:416:99:16
num_inference_steps

Number of inference steps (1-4)

1234
output_format

Output image format

jpegpng

Code Examples

curl -X POST https://api.hinow.ai/v1/images \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "black-forest-labs/flux-1-schnell",
    "prompt": "A beautiful sunset over mountains",
    "parameters": {
      "aspect_ratio": "1:1",
      "num_inference_steps": "1",
      "output_format": "jpeg"
    }
  }'