FLUX Pro is paid, hosted image generation from Black Forest Labs; BFL lists FLUX1.1 [pro] at $0.04 per image. Pro has no open weights, while FLUX.1-schnell and FLUX.1-dev are separate downloadable models. This guide covers the FLUX1.1 [pro] endpoint and its usage costs. Pricing, Access
Pricing checked September 5, 2026: BFL uses the same published rate for API and Playground generation. Assess trial credits separately from recurring usage costs. Pricing
What are the key facts about FLUX Pro access?
| Field | Verified detail |
|---|---|
| Developer | Black Forest Labs. Announcement |
| Released | Original FLUX.1 family: August 1, 2024; FLUX1.1 [pro]: October 2, 2024. FLUX.1, FLUX1.1 |
| Type | Hosted text-to-image generation. API documentation |
| Size or parameters | FLUX1.1 [pro] parameter count: not published in the cited API guide. Guide |
| License and access | Proprietary hosted Pro access; no open Pro weights. BFL lists paid API and Playground usage. Access, Pricing |
| Where it runs | Provider infrastructure; requests go to the BFL API. API guide |
Which controls does the FLUX1.1 Pro API offer?
The documented FLUX1.1 [pro] endpoint accepts a prompt and image dimensions. It also exposes a seed, output format, and optional prompt upsampling, giving developers named controls to record with a generation. API guide
Hosted generation can suit a project whose priority is integrating requests and reviewing outputs. Keep the application brief separate from model settings so you can evaluate another endpoint without rewriting the entire creative task.
BFL documents an asynchronous request pattern: submit a task, keep its polling URL, then retrieve the result when ready. That provides a defined sequence for connecting generation to an application. API guide
For an initial evaluation, choose a deliverable with clear acceptance criteria. A product background might require an uncluttered surface, a specific palette, and room for a headline that will be added later.
What costs and endpoint limits affect FLUX Pro?
The original Pro 1.0 endpoints were deprecated on October 31, 2025. BFL's release notes direct users to alternatives including flux-pro-1.1; check the exact endpoint before adapting a tutorial or integration. Release notes
The API's returned sample URL is temporary. BFL documents a ten-minute validity period, so the workflow should retrieve the image promptly after completion. API guide
Budget for the requests used to reach an accepted image. A listed price per image does not describe how many attempts your brief will need, and the pricing page does not establish a universal acceptance rate. Pricing
Model identity matters when comparing offers. A page advertising “FLUX” should identify the variant before you compare its price with Pro, because downloadable schnell and dev are distinct entries in BFL's family. Announcement
How do you access and budget for the FLUX1.1 Pro API?
Choose a paid access path deliberately
Use BFL's dashboard to create an account, add credits, and create a project API key. The official quickstart describes this sequence and instructs users to keep the key out of client-side code. Quickstart
Decide on an evaluation budget before submitting the first request. Write down how many candidate images you intend to inspect and what would justify an additional attempt.
For this example, set BFL_API_KEY in your local environment using your own key. The request below submits a standard FLUX1.1 [pro] task; it does not download the completed image. API documentation
curl --fail-with-body https://api.bfl.ai/v1/flux-pro-1.1 \
-H "x-key: $BFL_API_KEY" \
-H "Content-Type: application/json" \
-d '{"prompt":"A brass desk lamp on an ivory table, soft daylight", "width":1024, "height":1024}'
Save the response's id and polling_url. Send GET requests to that returned URL with the API key until the status is Ready, then retrieve result.sample; handle Error or Failed as terminal outcomes. API documentation
Avoid creating a new generation simply because the first task is pending. In your application, keep task submission and task-status checking separate, with a clear way to inspect a failed request.
Review the result against a brief
For the lamp example, decide whether the material reads as brass, whether the table is the requested color, and whether the lighting suits the planned layout. These are suggested checks for this prompt, not measured model scores.
If the image is close, revise one requirement. For example, ask for the lamp on the left with an open area on the right. Keep the endpoint and dimensions stable so your notes describe a useful comparison.
Save accepted images locally with the prompt, endpoint, and relevant settings. Include rejected attempts in your evaluation record so the apparent quality of the final selection does not hide the work required to obtain it.
Calculate the cost of exploration
At the checked price, an illustrative set of 25 FLUX1.1 [pro] images costs $1 in generation charges: 25 multiplied by $0.04. This is arithmetic using BFL's rate, not an account-specific quote. Pricing
If your plan includes several candidate compositions for every finished asset, count those candidates too. Compare total generation spend with the number of results that meet your criteria.
When another service offers credits, inspect which model those credits cover, how the balance is consumed, and whether an ongoing charge applies. Keep promotional access separate in your worksheet so the recurring cost remains visible.
How does paid FLUX Pro compare with downloadable alternatives?
| Option | Access distinction |
|---|---|
| FLUX1.1 [pro] | Hosted generation, listed by BFL at $0.04 per image. API, Pricing |
| FLUX.1-schnell | Downloadable weights with an Apache-2.0 model license. Card |
| FLUX.1-dev | Downloadable weights under the FLUX.1-dev Non-Commercial License. Card |
For a local workflow, consult the ComfyUI pillar. The sibling FLUX licensing guide helps organize the variant-specific documentation.
Compare the complete process: setup effort, output review, recurring requests, and the ability to reproduce a chosen configuration. Keep those observations separate from a claim that one access route always produces a better image.
What should you know about FLUX Pro pricing and downloads?
Is FLUX Pro free?
BFL lists FLUX1.1 [pro] at $0.04 per generated image, or four credits. Evaluate any promotional offer separately from that published API and Playground price. Pricing
Can I download FLUX Pro weights?
FLUX Pro is hosted and has no open weights. Black Forest Labs separately publishes downloadable FLUX.1-dev and FLUX.1-schnell checkpoints. Official model access
Which FLUX Pro endpoint does this pricing guide use?
This guide uses flux-pro-1.1, the endpoint for FLUX1.1 [pro]. BFL deprecated the original Pro 1.0 endpoints on October 31, 2025. API, Release notes
How long does a FLUX Pro result link remain valid?
BFL's signed FLUX1.1 [pro] result URLs are valid for ten minutes. Retrieve the completed image promptly and save it with the prompt and generation settings. API guide
Sources
- Original FLUX family announcement
- FLUX1.1 Pro announcement
- FLUX1.1 Pro API guide
- BFL pricing
- BFL API release notes
- BFL account and key setup
- BFL hosted and open-weight model access
- FLUX.1-schnell model card
- FLUX.1-dev model card
Top comments (0)