Sign in

Generate - Core

documented

Generate an image using the Stable Image Core model.

POST /v2beta/stable-image/generate/coreStable 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/core" \
  -X POST \
  -H "Accept: image/*" \
  -H "Authorization: Bearer {{STABILITY_API_KEY}}" \
  -F "prompt={{$prompt}}" \
  -F "aspect_ratio={{$aspect_ratio}}" \
  -F "negative_prompt={{$negative_prompt}}" \
  -F "seed={{$seed}}" \
  -F "style_preset={{$style_preset}}" \
  -F "output_format={{$output_format}}"