Sign in

Generate - Ultra

documented

Generate an image using the Stable Image Ultra model.

POST /v2beta/stable-image/generate/ultraStable 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/ultra" \
  -X POST \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{STABILITY_API_KEY}}" \
  -F 'prompt={{$prompt}}' \
  -F 'negative_prompt={{$negative_prompt}}' \
  -F 'aspect_ratio={{$aspect_ratio}}' \
  -F 'seed={{$seed}}' \
  -F 'width={{$width}}' \
  -F 'height={{$height}}' \
  -F 'output_format={{$output_format}}'