Stable Diffusion 3.5 Flash

Model Information

Display Name: Stable Diffusion 3.5 Flash

API Model ID: stability-ai/sd3.5-flash

Category: Text To Image

Description: Stable Diffusion 3.5 Flash is part of Stability AI's Stable Diffusion 3.5 base-model suite. A distilled version of SD3.5 Medium that generates high-quality images in a 4-step process instead of 40, making it faster than SD3.5 Medium. **Key Features:** - 1 megapixel output (default 1024x1024) - Text-to-image and image-to-image (with strength control) - cfg_scale / guidance control and style presets - Word-level prompt weighting via (word:weight) syntax **Best For:** - High-volume, high-quality digital assets (websites, newsletters, marketing) - Balancing speed and quality per use case

How to Use This Model

To use Stable Diffusion 3.5 Flash via the HInow.ai API, use the model ID: stability-ai/sd3.5-flash

API Request Example (Chat/Text)


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

{
  "model": "stability-ai/sd3.5-flash",
  "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": "stability-ai/sd3.5-flash",
  "prompt": "Your image description here"
}
              

Pricing

  • total: $0.0375

Available Parameters

  • aspect_ratio: Aspect ratio of the generated image. (Options: 1:1, 16:9, 9:16, 3:2, 2:3, 4:5, 5:4, 21:9, 9:21)
  • negative_prompt: Keywords describing what you do NOT wish to see in the output image. Advanced feature.
  • style_preset: Guides the image model towards a particular visual style. (Options: 3d-model, analog-film, anime, cinematic, comic-book, digital-art, enhance, fantasy-art, isometric, line-art, low-poly, modeling-compound, neon-punk, origami, photographic, pixel-art, tile-texture)
  • guidance_scale: How strictly the diffusion process adheres to the prompt (cfg_scale, 1-10). Maps to the provider's cfg_scale.
  • strength: Image-to-image denoising strength (0-1). Required when an input image is provided: 0 keeps the input image, 1 ignores it.
  • seed: Random seed for reproducibility. Use -1 (or omit) for a random seed.
  • output_format: Output image format. (Options: jpeg, png, webp)

Quick Reference

To use this model, set: "model": "stability-ai/sd3.5-flash"

Featured: No

Documentation: https://hinow.ai/models/stability-ai/sd3.5-flash

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

Back to Models

Stable Diffusion 3.5 Flash

stability-ai/sd3.5-flash

$0.037
per image

About

Stable Diffusion 3.5 Flash is part of Stability AI's Stable Diffusion 3.5 base-model suite.

A distilled version of SD3.5 Medium that generates high-quality images in a 4-step process instead of 40, making it faster than SD3.5 Medium.

Key Features:

  • 1 megapixel output (default 1024x1024)
  • Text-to-image and image-to-image (with strength control)
  • cfg_scale / guidance control and style presets
  • Word-level prompt weighting via (word:weight) syntax

Best For:

  • High-volume, high-quality digital assets (websites, newsletters, marketing)
  • Balancing speed and quality per use case

Capabilities

Text To ImageImage To Image

Parameters

aspect_ratio

Aspect ratio of the generated image.

1:116:99:163:22:34:55:421:99:21
negative_prompt

Keywords describing what you do NOT wish to see in the output image. Advanced feature.

style_preset

Guides the image model towards a particular visual style.

3d-modelanalog-filmanimecinematiccomic-bookdigital-artenhancefantasy-artisometricline-artlow-polymodeling-compoundneon-punkorigamiphotographicpixel-arttile-texture
guidance_scale

How strictly the diffusion process adheres to the prompt (cfg_scale, 1-10). Maps to the provider's cfg_scale.

strength

Image-to-image denoising strength (0-1). Required when an input image is provided: 0 keeps the input image, 1 ignores it.

seed

Random seed for reproducibility. Use -1 (or omit) for a random seed.

output_format

Output image format.

jpegpngwebp

Code Examples

curl -X POST https://api.hinow.ai/v1/images \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "stability-ai/sd3.5-flash",
    "prompt": "Transform this image into cyberpunk style",
    "images": [
      "https://example.com/image1.jpg",
      "data:image/png;base64,iVBORw0KGgo..."
    ],
    "parameters": {
      "aspect_ratio": "1:1",
      "negative_prompt": "",
      "style_preset": "3d-model",
      "guidance_scale": "",
      "strength": "",
      "seed": "",
      "output_format": "jpeg"
    }
  }'