Black Forest Labs

Black Forest Labs

flux-schnell

FLUX Schnell

FLUX Schnell is available through BatchIn's public live catalog.

Public model detailAvailableGenerative diffusion stack

Params

12B

Context

N/A

Max Output

N/A

License

Apache-2.0

TTFT

1.4s

Throughput

scene-bound

Why pick it

  • Live backend route with verified pricing and billing.
  • Public catalog entry generated from the backend model list.

Pricing

TierPublicCachedPrice sourceNote
Realtime$0.002 / imageN/ABatchIn runtime catalogSingle public price is shown with its runtime source and no savings comparison
Batch$0.002 / imageN/ABatchIn runtime catalogBatch public pricing follows the same runtime source
Live relay pricing pulled from the backend catalog.

Quick start

OpenAI-compatible surface. Swap the base URL and ship

Python
from openai import OpenAI

client = OpenAI(
    base_url="https://api.luminapath.tech/v1",
    api_key="BATCHIN_API_KEY"
)

resp = client.chat.completions.create(
    model="flux-schnell",
    messages=[{"role": "user", "content": "Summarize why this model is a fit for my workload"}]
)

print(resp.choices[0].message.content)
JavaScript
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.luminapath.tech/v1",
  apiKey: process.env.BATCHIN_API_KEY,
});

const resp = await client.chat.completions.create({
  model: "flux-schnell",
  messages: [{ role: "user", content: "Summarize why this model is a fit for my workload" }],
});

console.log(resp.choices[0]?.message?.content);
cURL
curl https://api.luminapath.tech/v1/chat/completions \
  -H "Authorization: Bearer ***" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "flux-schnell",
    "messages": [{"role":"user","content":"Summarize why this model is a fit for my workload"}]
  }'

Specs

Architecture

Generative diffusion stack

Vendor group

Black Forest Labs

Context window

N/A

Max output

N/A

Best for

black-forest-labs
available

Related models

Back to model center