Stable Diffusion 3.5 Large
Generate high-quality images from text prompts using the Stable Diffusion 3.5 Large model. Supports text-to-image and image-to-image modes with configurable guidance, steps, and output settings.
Quick Start
Requires an each::labs API key. Get one at eachlabs.ai.
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "stable-diffusion-3-5-large",
"version": "0.0.1",
"input": {
"prompt": "a photorealistic underwater scene with colorful coral reef and tropical fish, sunlight filtering through water",
"aspect_ratio": "16:9",
"cfg": 3.5,
"steps": 35,
"output_format": "webp"
}
}'
Parameters
| Parameter |
Type |
Default |
Description |
| aspect_ratio |
string |
1:1 |
Output aspect ratio. enum: 1:1, 16:9, 21:9, 3:2, 2:3, 4:5, 5:4, 3:4, 4:3, 9:16, 9:21 |
| cfg |
number |
3.5 |
Guidance scale - how similar the output should be to the prompt |
| image |
string |
- |
Input image for image-to-image mode |
| output_format |
string |
webp |
Output format. enum: webp, jpg, png |
| output_quality |
integer |
90 |
Quality of output images, from 0 to 100 |
| prompt |
string |
- |
Text prompt for image generation |
| prompt_strength |
number |
0.85 |
Prompt strength when using image-to-image. 1.0 is full destruction of input |
| seed |
integer |
- |
Set a seed for reproducibility. Random by default |
| steps |
integer |
35 |
Number of steps to run the sampler for |
Examples
Cinematic landscape:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "stable-diffusion-3-5-large",
"version": "0.0.1",
"input": {
"prompt": "epic mountain landscape at sunset with dramatic clouds, golden light, cinematic composition, 8k resolution",
"aspect_ratio": "21:9",
"cfg": 4,
"steps": 40,
"output_format": "png",
"output_quality": 100
}
}'
Image-to-image style transfer:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "stable-diffusion-3-5-large",
"version": "0.0.1",
"input": {
"prompt": "anime style illustration, vibrant colors, Studio Ghibli inspired",
"image": "https://example.com/landscape-photo.jpg",
"prompt_strength": 0.75,
"cfg": 4,
"steps": 35,
"seed": 42
}
}'
Related Models
Documentation
1---2name: stable-diffusion-3-5-large3description: Stable Diffusion 3.5 Large | AI Image Generation. Generate high-quality images from text with the large SD 3.5 model. Triggers: stable diffusion 3.5 large, sd 3.5, text to image, image generation, sd3 large4---56# Stable Diffusion 3.5 Large78Generate high-quality images from text prompts using the Stable Diffusion 3.5 Large model. Supports text-to-image and image-to-image modes with configurable guidance, steps, and output settings.910## Quick Start1112> Requires an each::labs API key. Get one at [eachlabs.ai](https://eachlabs.ai).1314```bash15curl -X POST https://api.eachlabs.ai/v1/prediction \16 -H "Content-Type: application/json" \17 -H "X-API-Key: $EACHLABS_API_KEY" \18 -d '{19 "model": "stable-diffusion-3-5-large",20 "version": "0.0.1",21 "input": {22 "prompt": "a photorealistic underwater scene with colorful coral reef and tropical fish, sunlight filtering through water",23 "aspect_ratio": "16:9",24 "cfg": 3.5,25 "steps": 35,26 "output_format": "webp"27 }28 }'29```3031## Parameters3233| Parameter | Type | Default | Description |34|-----------|------|---------|-------------|35| aspect_ratio | string | 1:1 | Output aspect ratio. enum: 1:1, 16:9, 21:9, 3:2, 2:3, 4:5, 5:4, 3:4, 4:3, 9:16, 9:21 |36| cfg | number | 3.5 | Guidance scale - how similar the output should be to the prompt |37| image | string | - | Input image for image-to-image mode |38| output_format | string | webp | Output format. enum: webp, jpg, png |39| output_quality | integer | 90 | Quality of output images, from 0 to 100 |40| prompt | string | - | Text prompt for image generation |41| prompt_strength | number | 0.85 | Prompt strength when using image-to-image. 1.0 is full destruction of input |42| seed | integer | - | Set a seed for reproducibility. Random by default |43| steps | integer | 35 | Number of steps to run the sampler for |4445## Examples4647**Cinematic landscape:**48```bash49curl -X POST https://api.eachlabs.ai/v1/prediction \50 -H "Content-Type: application/json" \51 -H "X-API-Key: $EACHLABS_API_KEY" \52 -d '{53 "model": "stable-diffusion-3-5-large",54 "version": "0.0.1",55 "input": {56 "prompt": "epic mountain landscape at sunset with dramatic clouds, golden light, cinematic composition, 8k resolution",57 "aspect_ratio": "21:9",58 "cfg": 4,59 "steps": 40,60 "output_format": "png",61 "output_quality": 10062 }63 }'64```6566**Image-to-image style transfer:**67```bash68curl -X POST https://api.eachlabs.ai/v1/prediction \69 -H "Content-Type: application/json" \70 -H "X-API-Key: $EACHLABS_API_KEY" \71 -d '{72 "model": "stable-diffusion-3-5-large",73 "version": "0.0.1",74 "input": {75 "prompt": "anime style illustration, vibrant colors, Studio Ghibli inspired",76 "image": "https://example.com/landscape-photo.jpg",77 "prompt_strength": 0.75,78 "cfg": 4,79 "steps": 35,80 "seed": 4281 }82 }'83```8485## Related Models8687- [stable-diffusion-3-5-medium](../stable-diffusion-3-5-medium/) - Lighter SD 3.5 model for faster generation88- [flux-dev](../flux-dev/) - Flux Dev image generation89- [flux-1-1-pro-ultra](../flux-1-1-pro-ultra/) - Ultra quality Flux generation9091## Documentation9293- [each::labs Docs](https://docs.eachlabs.ai)94- [API Reference](https://docs.eachlabs.ai/api/overview)