# Flux 1.1 Pro Ultra Experience the ultimate AI performance with Flux 1.1 Pro Ultra, designed for precision and power. ## API Information - **Model Slug:** flux-1-1-pro-ultra - **Branded URL:** https://www.eachlabs.ai/black-forest-labs/flux-1-1/flux-1-1-pro-ultra - **Provider:** Black Forest Labs - **Category:** Text to Image - **Output Type:** image - **Status:** active - **Version:** 0.0.1 - **Base Cost:** Fixed price per execution: $0.06 - **Estimated Processing Time:** 5 seconds - **Last Updated:** 2026-06-15 - **Interactive Demo:** https://www.eachlabs.ai/ai-models/flux-1-1-pro-ultra ## Pricing - **Charge Type:** dynamic - **Estimated Price (default example):** $0.0600 - **Pricing Details:** Fixed price per execution: $0.06 ### Pricing Rules | Condition | Pricing | | --- | --- | | Rule 1 | Fixed price per execution: $0.06 | ## Input Schema | Parameter | Type | Required | Default | Constraints | Description | |-----------|------|----------|---------|-------------|-------------| | prompt | string | Yes | - | - | Text prompt for image generation | | image_prompt | string | No | - | jpeg, jpg, png, webp | Image to use with Flux Redux. This is used together with the text prompt to guide the generation towards the composition of the image_prompt. Must be jpeg, png, gif, or webp. | | image_prompt_strength | number | No | 0.1 | 0–1 | Blend between the prompt and the image prompt. | | aspect_ratio | string | No | 1:1 | 21:9,16:9,3:2,4:3,5:4,1:1,4:5,3:4,2:3,9:16,9:21 | An enumeration. | | safety_tolerance | integer | No | 2 | 1–6 | Safety tolerance, 1 is most strict and 6 is most permissive | | seed | integer | No | - | - | Random seed. Set for reproducible generation | | raw | boolean | No | false | - | Generate less processed, more natural-looking images | | output_format | string | No | jpg | jpg,png | An enumeration. | ## Example Request ```bash curl -X POST https://api.eachlabs.ai/v1/prediction/ \ -H "X-API-Key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "flux-1-1-pro-ultra", "input": { "prompt": "a majestic snow-capped mountain peak bathed in a warm glow of the setting sun" } }' ``` ## Output Schema Response returned by `GET /v1/prediction/{id}` when the job completes: ```json { "status": "success", "predictionID": "string", "output": "string (URL of generated image)", "metrics": { "predict_time": "number (seconds)" } } ``` ## Polling ```bash curl https://api.eachlabs.ai/v1/prediction/{PREDICTION_ID} \ -H "X-API-Key: YOUR_API_KEY" ``` | Status | Meaning | |--------|---------| | `processing` | Still running — poll again | | `success` | Done — read `output` | | `error` | Failed — read `message` / `details` | ## Webhook (alternative to polling) Pass `"webhook_url": "https://your.host/path"` in the create request. Eachlabs POSTs this payload when the job ends: ```json { "exec_id": "prediction-uuid", "status": "succeeded", "output": "https://...", "error": "" } ``` `status` is `"succeeded"` or `"failed"`. `exec_id` equals the `predictionID` from create. Return 2xx within 30 seconds. ## Errors Error body: `{ "status": "error", "message": "...", "details": "..." }` | Code | Meaning | |------|---------| | `400` | Invalid input | | `401` | Missing / invalid `X-API-Key` | | `404` | Unknown model or prediction id | | `429` | Rate limit — 100 creates / min, 10 concurrent per key | | `5xx` | Retry with backoff | ## Overview **flux-1.1-pro-ultra — Text-to-Image AI Model** flux-1.1-pro-ultra delivers Black Forest Labs' pinnacle of text-to-image generation, producing photorealistic images up to 2K resolution with natural aesthetics that rival professional photography. As the most powerful model in the flux-1.1 family, flux-1.1-pro-ultra excels in **ultra high-resolution output up to 4MP** and raw mode for authentic, less-processed visuals, solving the common issue of AI images looking overly artificial. Developers and creators seeking a **Black Forest Labs text-to-image API** turn to flux-1.1-pro-ultra for its stability in commercial batch generation, precise material rendering, and consistent facial proportions. Part of the flux-1.1 pro lineup, this text-to-image AI model supports multiple aspect ratios like 1:1, 16:9, and 9:16, making it ideal for everything from social media graphics to high-end prints. With processing times around 30 seconds per image, flux-1.1-pro-ultra balances speed and superior detail for professional workflows. ## Usage Notes - API Base URL: `https://api.eachlabs.ai/v1` - Authentication: send `X-API-Key: YOUR_API_KEY`. Generate a key from the Eachlabs dashboard at https://www.eachlabs.ai/dashboard/api-keys. - File-typed parameters (`*_url`, `image_url`, `video_url`, `audio_url`, etc.) accept publicly-reachable HTTPS URLs only. Upload your asset first (GCS / S3 / your CDN) and pass the resulting URL. Data-URIs and localhost URLs are rejected. - For structured parameters (arrays / objects) send real JSON values, not stringified payloads. - Monetary values are reported in USD; per-token / per-megapixel rates may be billed in micro-cents internally. - Prefer `webhook_url` over polling for long-running predictions — see the Webhook Callback section.