Community Models V3: Text to Image
Generate images from text prompts using any community Stable Diffusion model via the V3 Dreambooth API.
Text to Image (V3)
Generate from any community model. Same parameters as the V4 endpoint with slightly different routing.
curl -X POST 'https://stablediffusionapi.com/api/v3/dreambooth' \
-H 'Content-Type: application/json' \
-d '{
"key": "YOUR_API_KEY",
"model_id": "anything-v5",
"prompt": "1girl, masterpiece, best quality",
"negative_prompt": "low quality, blurry",
"width": "512",
"height": "768",
"samples": "1",
"num_inference_steps": "30",
"guidance_scale": 7.5
}'