FLUX.2 Pro

Model Information

Display Name: FLUX.2 Pro

API Model ID: black-forest-labs/flux-2-pro

Category: Text To Image

Description: FLUX.2 Pro is Black Forest Labs' premium image generation model, delivering photorealistic results with enhanced detail, texture, and reliable text rendering. **Key Features:** - Photorealistic image generation with premium quality - Multi-reference editing (up to 10 source images) - Reliable text rendering for infographics and UI mockups - Identity consistency across complex scenes - Customizable safety tolerance **Capabilities:** - Text-to-image generation - Multi-reference image editing - Typography and layout rendering - Character and identity consistency **Best For:** - Professional-grade image generation - Marketing and advertising visuals - Typography and design mockups - Multi-reference compositions - High-fidelity product visualization **Output Options:** - Resolution: 256-1440px (multiples of 32) - Default: 1024x1024 - Formats: JPEG, PNG **Pricing:** - First megapixel: $0.045/MP - Subsequent megapixels: $0.0225/MP **Technical Specs:** - Architecture: Rectified Flow Transformer - Max Resolution: 1440x1440 - License: BFL Commercial License

How to Use This Model

To use FLUX.2 Pro via the HInow.ai API, use the model ID: black-forest-labs/flux-2-pro

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-2-pro",
  "messages": [
    {"role": "user", "content": "Your message here"}
  ]
}
              

API Request Example (Image Generation)


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

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

Pricing

  • total: $0.045

Available Parameters

  • aspect_ratio: Output aspect ratio. All 9 canonical ratios are accepted; if the upstream provider does not natively support a given ratio, the system maps to the closest one. (Options: 1:1, 16:9, 9:16, 4:3, 3:4, 3:2, 2:3, 21:9, 9:21)
  • num_inference_steps: Number of denoising steps. (Options: 20, 25, 28, 30, 35, 40)
  • guidance_scale: How closely to follow the prompt. (Options: 1.5, 2.0, 2.5, 3.0, 3.5)
  • output_format: Output image format. (Options: jpeg, png)

Quick Reference

To use this model, set: "model": "black-forest-labs/flux-2-pro"

Featured: Yes

Documentation: https://hinow.ai/models/black-forest-labs/flux-2-pro

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

Back to Models

FLUX.2 Pro

Featured

black-forest-labs/flux-2-pro

$0.045
per image

About

FLUX.2 Pro is Black Forest Labs' premium image generation model, delivering photorealistic results with enhanced detail, texture, and reliable text rendering.

Key Features:

  • Photorealistic image generation with premium quality
  • Multi-reference editing (up to 10 source images)
  • Reliable text rendering for infographics and UI mockups
  • Identity consistency across complex scenes
  • Customizable safety tolerance

Capabilities:

  • Text-to-image generation
  • Multi-reference image editing
  • Typography and layout rendering
  • Character and identity consistency

Best For:

  • Professional-grade image generation
  • Marketing and advertising visuals
  • Typography and design mockups
  • Multi-reference compositions
  • High-fidelity product visualization

Output Options:

  • Resolution: 256-1440px (multiples of 32)
  • Default: 1024x1024
  • Formats: JPEG, PNG

Pricing:

  • First megapixel: $0.045/MP
  • Subsequent megapixels: $0.0225/MP

Technical Specs:

  • Architecture: Rectified Flow Transformer
  • Max Resolution: 1440x1440
  • License: BFL Commercial License

Capabilities

Text To ImageImage Editing

Parameters

aspect_ratio

Output aspect ratio. All 9 canonical ratios are accepted; if the upstream provider does not natively support a given ratio, the system maps to the closest one.

1:116:99:164:33:43:22:321:99:21
num_inference_steps

Number of denoising steps.

202528303540
guidance_scale

How closely to follow the prompt.

1.52.02.53.03.5
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-2-pro",
    "prompt": "A beautiful sunset over mountains",
    "parameters": {
      "aspect_ratio": "1:1",
      "num_inference_steps": "20",
      "guidance_scale": "1.5",
      "output_format": "jpeg"
    }
  }'