Sign in

Generate - SD3

documented

Generate an image using the Stable Diffusion 3 model.

POST /v2beta/stable-image/generate/sd3Stable Imageno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.stability.ai/v2beta/stable-image/generate/sd3" \
  -X POST \
  -H "Authorization: Bearer {{STABILITY_API_KEY}}" \
  -H "Accept: image/*" \
  -F "prompt={{$prompt}}" \
  -F "model={{$model}}" \
  -F "mode={{$mode}}" \
  -F "output_format={{$output_format}}" \
  -F "width={{$width}}" \
  -F "height={{$height}}" \
  -F "seed={{$seed}}" \
  -F "aspect_ratio={{$aspect_ratio}}" \
  -F "negative_prompt={{$negative_prompt}}" \
  -F "image=@{{$image_path}}"
Generate - SD3 · Stability AI · OpenIntegrations