Flux realism API

flux-realism
FLUX Realism LoRA generates photorealistic images from text prompts, enhancing creative possibilities.
Output
$0.0455 / MP (variable)

How to use Flux realism API

Install any OpenAI-compatible SDK, point it at api.aimlapi.com/v1, and set the model to flux-realism.
import requests

r = requests.post(
    "https://api.aimlapi.com/v1/images/generations",
    headers={"Authorization": "Bearer " + AIMLAPI_KEY},
    json={
      "model": "flux-realism",
      "prompt": "A cat holding a sign that says hello"
    },
)
print(r.json())
const r = await fetch("https://api.aimlapi.com/v1/images/generations", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${process.env.AIMLAPI_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    "model": "flux-realism",
    "prompt": "A cat holding a sign that says hello"
  }),
});
console.log(await r.json());
curl -X POST https://api.aimlapi.com/v1/images/generations \
  -H "Authorization: Bearer $AIMLAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"flux-realism","prompt":"A cat holding a sign that says hello"}'

OpenAI-compatible — swap the base URL and it works with your existing SDK.

Flux realism API Pricing

TypePrice
Output
$0.0455 / MP (variable)

Flux realism vs other models

ModelInputOutputContextBest for
Flux realism
This page
$0.0455 / MP (variable)
Image generation at scale
$0.325 / 1M tokens
$78 / 1M tokens
128K tokens
Image generation at scale
$6.5 / 1M tokens
$39 / 1M tokens
Image generation at scale
Image generation at scale
$0.0195 / MP (variable)
Image generation at scale

Frequently asked questions

Flux realism takes image, text as input and returns image.

Flux realism is priced at $0.0455 / MP (variable).

Flux realism is billed per generation — a fixed charge per output rather than by prompt length.

Yes, Flux realism accepts image input as well as a text prompt.

Flux realism was built by Black Forest Labs.

Send a request to https://api.aimlapi.com/v1/images/generations with flux-realism as the model id.

Yes. Flux realism is served through AI/ML API, so the same key and endpoint format used for other models applies.

FLUX Realism LoRA is an image generation model from Black Forest Labs that creates photorealistic images from text prompts.

Start building with Flux realism

Get API Key
1000+ models, one API.