Luma Photon Flash

Model Information

Display Name: Luma Photon Flash

API Model ID: luma/photon-flash

Category: Text To Image

Description: Luma Photon Flash is an ultra-fast text-to-image model by Luma Labs, optimized for speed with generation times of 100-500ms. **Key Features:** - Ultra-fast generation (100-500ms) - High-quality output at speed - Character consistency support - Multi-image reference capability **Use Cases:** - Real-time creative applications - Rapid prototyping and iteration - Interactive design tools - High-throughput content pipelines

How to Use This Model

To use Luma Photon Flash via the HInow.ai API, use the model ID: luma/photon-flash

API Request Example (Chat/Text)


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

{
  "model": "luma/photon-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": "luma/photon-flash",
  "prompt": "Your image description here"
}
              

Pricing

  • total: $0.008

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)
  • output_format: Output image format. (Options: jpeg, png, webp)

Quick Reference

To use this model, set: "model": "luma/photon-flash"

Featured: No

Documentation: https://hinow.ai/models/luma/photon-flash

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

Back to Models

Luma Photon Flash

luma/photon-flash

$0.0080
per image

About

Luma Photon Flash is an ultra-fast text-to-image model by Luma Labs, optimized for speed with generation times of 100-500ms.

Key Features:

  • Ultra-fast generation (100-500ms)
  • High-quality output at speed
  • Character consistency support
  • Multi-image reference capability

Use Cases:

  • Real-time creative applications
  • Rapid prototyping and iteration
  • Interactive design tools
  • High-throughput content pipelines

Capabilities

Text To Image

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
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": "luma/photon-flash",
    "prompt": "A beautiful sunset over mountains",
    "parameters": {
      "aspect_ratio": "1:1",
      "output_format": "jpeg"
    }
  }'