Community Models V3: Inpainting
Inpaint with any community Stable Diffusion model via the V3 Dreambooth API.
Inpainting (V3)
Inpaint masked regions using any community model.
curl -X POST 'https://stablediffusionapi.com/api/v3/dreambooth_inpaint' \
-H 'Content-Type: application/json' \
-d '{
"key": "YOUR_API_KEY",
"model_id": "realistic-vision-v51",
"prompt": "...",
"init_image": "https://example.com/photo.jpg",
"mask_image": "https://example.com/mask.png",
"width": "512",
"height": "512"
}'