FLUX.1 SRPO is a 12B-parameter flow transformer that generates high-quality images from text prompts for personal and commercial use. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Ocioso

$0.025por execução·~40 / $1

character concept art, full body portrait of a rogue space pirate, female with a cybernetic arm and a confident smirk, wearing worn leather armor over a high-tech suit, standing in the hangar of a gritty spaceship, detailed, dynamic pose, trending on ArtStation.

A surreal, artistic portrait of a model standing in a shallow, mirror-like pool of water. The sky above is filled with two moons and swirling, nebula-like clouds. She is wearing a sculptural, iridescent dress that seems to be made of liquid metal. The reflection in the water is perfectly clear. The entire scene is bathed in an ethereal, otherworldly blue and purple light. Conceptual, high-fashion, inspired by the art of Salvador Dalí.

A minimalist, black and white photograph of a model with androgynous features, posed inside a brutalist architectural structure. The model wears a stark, sculptural white dress with clean lines. The composition is all about geometric shapes and the interplay of light and shadow, creating a sense of quiet intensity. Think Helmut Newton meets modern architecture.

A statuesque model with flowing silver hair standing on the edge of a dramatic cliffside in the Scottish Highlands. She is wearing a long, flowing crimson gown that billows in the wind. The sky is overcast and moody. The shot is wide-angle, capturing the vastness of the landscape and her commanding presence within it. Powerful, raw, and epic. Shot on Kodak Portra 400 for a rich, filmic look.

A full-body shot of a confident woman with fiery red hair, walking down a rain-slicked SoHo street at dusk. She's wearing an oversized, structured blazer, leather trousers, and sharp stiletto heels. The city lights create a cinematic bokeh effect in the background. Moody, atmospheric lighting, captured with a 35mm lens, fashion editorial style for Vogue.

gothic romance, a beautiful melancholic woman in a black victorian mourning dress, standing on a windswept cliff before a ruined castle, stormy sea in the background, dramatic cinematic lighting, style of a pre-raphaelite painting.

isometric diorama of a cozy witch's library in a hollow tree stump, tiny glowing potions on shelves, a miniature fireplace, a cat sleeping on a stack of books, magical and intricate details, tilt-shift effect, 3d render

Art Nouveau style portrait of a cyberpunk android, intricate flowing lines and organic patterns integrated with futuristic cybernetics, stained glass and mother of pearl details, elegant and high-tech, style of Alphonse Mucha and Syd Mead

A majestic wolf howling at a full moon, depicted as a beautiful stained glass window, intricate lead lines, vibrant jewel-toned colors, glowing light filtering through the glass, dramatic and beautiful

National Geographic photo of the year, a majestic snow leopard captured mid-leap on a rocky, snow-covered mountain ridge, intense focus in its eyes, dynamic motion blur, dramatic lighting from the low sun, extremely detailed fur, 8k resolution.

surrealist art, a giant, ornate clock melting over the branch of a barren tree in a vast desert, a school of fish swimming through the sky, strange and dreamlike atmosphere, hyper-realistic detail, style of Salvador Dalí and René Magritte.
FLUX.1 SRPO [dev] is a 12-billion-parameter rectified flow transformer built for text-to-image generation with breathtaking quality and artistic coherence. It transforms descriptive prompts into visually striking compositions that balance realism, imagination, and aesthetic precision — ideal for both personal and commercial creative work.
High-Fidelity Generation Produces detailed, compositionally rich images from even abstract or poetic prompts.
Artistic Interpretation Captures lighting, texture, and emotion in a way that feels painterly yet realistic.
Configurable Creativity Adjust parameters like guidance scale, inference steps, and strength to control realism, style, and variation.
Resolution Control Flexible output sizes — up to 1024×1024 pixels — perfect for design, print, or digital use.
Multi-Format Output Export in JPEG or PNG to fit any creative pipeline.
Developer-Friendly [dev] Build Optimized for experimentation and fast inference; ideal for both research and production.
Input: Text prompt
Output: High-resolution image (JPEG / PNG)
Adjustable Parameters:
width / height
strength
num_inference_steps
guidance_scale
seed
Write your prompt — describe the scene or concept in detail.
Set image size — e.g., 1024×1024 for square artworks.
Adjust strength & guidance — balance realism and creativity.
Run generation — preview the image; tweak parameters if needed.
Download output — available in JPEG or PNG formats.
Each generation costs only $0.025 per image.
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/wavespeed-ai/flux-1-srpo with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Flux 1 Srpo below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/flux-1-srpo" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"size": "1024*1024",
"strength": 0.8,
"num_inference_steps": 28,
"seed": -1,
"guidance_scale": 3.5,
"output_format": "jpeg",
"enable_base64_output": false,
"enable_sync_mode": false
}'
# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# When status is "completed", read the output from data.outputs[0].// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env
const result = await client.run("wavespeed-ai/flux-1-srpo", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"size": "1024*1024",
"strength": 0.8,
"num_inference_steps": 28,
"seed": -1,
"guidance_scale": 3.5,
"output_format": "jpeg",
"enable_base64_output": false,
"enable_sync_mode": false
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"wavespeed-ai/flux-1-srpo",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"size": "1024*1024",
"strength": 0.8,
"num_inference_steps": 28,
"seed": -1,
"guidance_scale": 3.5,
"output_format": "jpeg",
"enable_base64_output": false,
"enable_sync_mode": false
}
)
print(output["outputs"][0]) # → URL of the generated outputFlux 1 Srpo is a WaveSpeedAI model for image generation, exposed as a REST API on WaveSpeedAI. FLUX.1 SRPO is a 12B-parameter flow transformer that generates high-quality images from text prompts for personal and commercial use. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/wavespeed-ai/flux-1-srpo.
Flux 1 Srpo starts at $0.025 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `prompt`, `size`, `seed`, `guidance_scale`, `num_inference_steps`, `enable_base64_output`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/wavespeed-ai/flux-1-srpo.
Average end-to-end generation time on WaveSpeedAI is around 5 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.
Commercial usage rights depend on the model's license, set by its provider (WaveSpeedAI). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.