Stable Diffusion 3 delivers superior text-to-image outputs with better image quality, typography, and complex prompt understanding. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
대기 중

$0.03실행당·~33 / $1

A photograph of Marina Bay at sunset. The sun has already set, but the afterglow has burned the sky into vivid shades of purple, pink, and orange. The lights of the Marina Bay Sands and surrounding skyscrapers have just turned on, reflecting on the perfectly still water. A long exposure shot, making the water and clouds appear silky and motion-blurred.

A photograph of East Coast Park at sunrise. The sun has just risen above the sea level, painting the sky in fiery shades of orange and deep red. The calm sea reflects the colors of the sky, with several distant cargo ships forming perfect silhouettes. Shot with a wide-angle lens to capture the magnificent expanse of the entire sky.

Professional photo, as the sun rises, soft golden morning light penetrates the thin mist over MacRitchie Reservoir. The empty TreeTop Walk bridge is faintly visible in the distant mist. The water's surface is like a mirror, reflecting the silhouettes of the lush rainforest on the shore. The image is filled with tranquility and the mysterious beauty of nature.

Looking out from a high-floor HDB window, the first rays of sunrise illuminate the Singapore city skyline. Low-hanging clouds are tinged with gold at the edges by the sun, while the building clusters below are still enveloped in pre-dawn blue tones. Shot with a telephoto lens, with a slight sense of atmospheric perspective.

At sunset, the sun is descending behind the wooden structure of the Henderson Waves Bridge. The warm light of the setting sun casts beautiful light and shadows on the bridge's unique wave-like form. The background is the green forest of the Southern Ridges. The composition highlights the integration of architecture and nature.

After a thunderstorm, a complete and vibrant double rainbow stretches across the Singapore city skyline. The sky is a deep blue, and the buildings, washed clean by the rain, appear exceptionally clear. The sun is shining brightly, filling the entire city with a sense of freshness and hope.
Create beautiful images from text with Stability AI's foundational Stable Diffusion 3 model. Featuring improved prompt understanding and visual quality, SD3 delivers reliable, high-quality results for both text-to-image and image-to-image generation at an accessible price point.
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the image you want to generate. |
| image | No | Optional reference image for image-to-image generation (upload or URL). |
| aspect_ratio | No | Output aspect ratio: 1:1, 3:4, 4:3, 16:9, or 9:16. Default: 1:1. |
| seed | No | Random seed for reproducibility. Use -1 for random. |
| enable_base64_output | No | API only: Returns base64 string instead of URL. |
Flat rate per image generation.
| Output | Cost |
|---|---|
| Per image | $0.03 |
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/stability-ai/stable-diffusion-3 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 Stable Diffusion 3 below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/stability-ai/stable-diffusion-3" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"aspect_ratio": "1:1",
"seed": -1,
"enable_base64_output": 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("stability-ai/stable-diffusion-3", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"aspect_ratio": "1:1",
"seed": -1,
"enable_base64_output": false
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"stability-ai/stable-diffusion-3",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"aspect_ratio": "1:1",
"seed": -1,
"enable_base64_output": false
}
)
print(output["outputs"][0]) # → URL of the generated outputStable Diffusion 3 is a Stability AI model for image generation, exposed as a REST API on WaveSpeedAI. Stable Diffusion 3 delivers superior text-to-image outputs with better image quality, typography, and complex prompt understanding. 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/stability-ai/stability-ai-stable-diffusion-3.
Stable Diffusion 3 starts at $0.030 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`, `image`, `aspect_ratio`, `seed`, `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/stability-ai/stability-ai-stable-diffusion-3.
Average end-to-end generation time on WaveSpeedAI is around 1 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 (Stability AI). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.