Skip to main content

Stable Diffusion 3.5 - Image Generator

Generate high-quality images using Stability AI's Stable Diffusion 3.5 model family.

This page documents all four SD3.5 models. They share the exact same parameters — only the model identifier changes:

Model IDNameDescription
sd3.5-largeStable Diffusion 3.5 LargeAt 8 billion parameters, the most powerful model in the family with superior quality and prompt adherence. Ideal for professional use cases at 1 megapixel resolution.
sd3.5-large-turboStable Diffusion 3.5 Large TurboA distilled version of SD3.5 Large. Generates high-quality images with exceptional prompt adherence in just 4 steps — considerably faster than SD3.5 Large.
sd3.5-mediumStable Diffusion 3.5 MediumWith 2.5 billion parameters, delivers an optimal balance between prompt accuracy and image quality — an efficient choice for fast, high-performance generation.
sd3.5-flashStable Diffusion 3.5 FlashA distilled version of SD3.5 Medium using a 4-step process instead of 40, making it the fastest model in the SD3.5 suite.

Endpoint

Request Headers

FieldValue
API-KEY<api-key>
Content-Typeapplication/json

Parameters

ParameterTypeRequiredDescription
typestringYesFeature type identifier. Must be IMAGE_GENERATOR
modelstringYesAI model identifier. One of sd3.5-large, sd3.5-large-turbo, sd3.5-medium, sd3.5-flash
promptObjectobjectYesConfiguration object containing all generation parameters

Prompt Object Parameters

ParameterTypeRequiredDescriptionDefault
promptstringYesText description of the image to generate-
negativePromptstringNoText describing what to avoid in the image (max 10,000 characters)-
aspect_ratiostringYesAspect ratio of the generated image (ignored when image is provided)-
output_formatstringYesOutput image format (png, jpeg, webp)-
seednumberNoRandom seed for reproducibility (0-4294967294). Omit or pass 0 for a random seed-
style_presetstringNoArtistic style preset-
imagestringNoReference image path for image-to-image generation (from the Asset API). When provided, the request runs in image-to-image mode and strength becomes required-
strengthnumberNoControls how much influence the reference image has (0.0-1.0). Required when image is provided.-

Reference Image Requirements

ConstraintValue
Supported formatsjpeg, png, webp
Side lengthEvery side must be at least 64 pixels

Supported Aspect Ratios

RatioDescriptionBest For
1:1Square formatSocial media posts, avatars
16:9WidescreenBanners, headers, presentations
21:9Ultra-widePanoramic views, cinematic shots
2:3PortraitVertical photos, book covers
3:2LandscapeStandard photography
4:5Portrait socialInstagram posts, stories
5:4Landscape socialFacebook covers, wide posts
9:16Vertical videoTikTok, Instagram stories
9:21Ultra-tallMobile screens, long banners

Style Presets

StyleDescription
3d-model3D rendered appearance
analog-filmFilm photography aesthetic
animeAnime/manga style
cinematicMovie-like quality
comic-bookComic book illustration
digital-artDigital artwork style
enhanceEnhanced realism
fantasy-artFantasy illustration
isometricIsometric perspective
line-artLine art style
low-polyLow polygon 3D style
modeling-compoundClay modeling aesthetic
neon-punkCyberpunk neon style
origamiPaper folding art
photographicRealistic photography
pixel-artRetro pixel art
tile-textureSeamless texture

Code Examples

For text-to-image, send aspect_ratio and omit image. For image-to-image, send a reference image (path from the Asset API) together with a strength value — aspect_ratio is ignored in this mode.

curl --location 'https://api.1min.ai/api/features' \
--header 'API-KEY: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"type": "IMAGE_GENERATOR",
"model": "sd3.5-large",
"promptObject": {
"prompt": "A serene mountain landscape with crystal clear lake reflection",
"negativePrompt": "blurry, low quality, distorted",
"aspect_ratio": "16:9",
"seed": 42,
"style_preset": "photographic",
"output_format": "png"
}
}'

Interactive Playground

API Playground

https://api.1min.ai/api/features
Describe the image you want to generate
Describe what you want to avoid in the image
Aspect ratio for text-to-image generation (ignored when a reference image is provided)
Random seed for reproducibility (0-4294967294). Omit or pass 0 for a random seed
Artistic style preset
Format of the generated image
Path to reference image for image-to-image generation (from Asset API)
Influence of the reference image (0.0-1.0). Required when an image is provided

Generated cURL Command:

curl -X POST "https://api.1min.ai/api/features" \
-H "API-KEY: <your-api-key>" \
-H "Content-Type: application/json" \
-d '{
"type": "IMAGE_GENERATOR",
"model": "sd3.5-large",
"promptObject": {
"prompt": "A serene mountain landscape with crystal clear lake reflection",
"negativePrompt": "blurry, low quality, distorted",
"aspect_ratio": "16:9",
"seed": 42,
"style_preset": "photographic",
"output_format": "png"
}
}'

Response Format

{
"aiRecord": {
"uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"userId": "user-12345",
"teamId": "team-67890",
"teamUser": {
"teamId": "team-67890",
"userId": "user-12345",
"userName": "John Doe",
"userAvatar": "https://example.com/avatar.jpg",
"status": "ACTIVE",
"role": "ADMIN",
"creditLimit": 100000000,
"usedCredit": 65000,
"createdAt": "2025-01-01T00:00:00.000Z",
"createdBy": "SYSTEM",
"updatedAt": "2025-01-15T10:30:00.000Z",
"updatedBy": "SYSTEM"
},
"model": "sd3.5-large",
"type": "IMAGE_GENERATOR",
"metadata": null,
"rating": null,
"feedback": null,
"conversationId": null,
"status": "SUCCESS",
"createdAt": "2025-01-15T10:30:00.000Z",
"aiRecordDetail": {
"promptObject": {
"prompt": "A serene mountain landscape with crystal clear lake reflection",
"negativePrompt": "blurry, low quality, distorted",
"aspect_ratio": "16:9",
"seed": 42,
"style_preset": "photographic",
"output_format": "png"
},
"resultObject": [
"development/images/2025_01_15_10_30_15_001_mountain_landscape.png"
],
"responseObject": {}
},
"additionalData": null,
"temporaryUrl": "https://s3.us-east-1.amazonaws.com/asset.1min.ai/development/images/2025_01_15_10_30_15_001_mountain_landscape.png?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=EXAMPLE_CREDENTIAL&X-Amz-Date=20250115T103000Z&X-Amz-Expires=604800&X-Amz-Signature=example_signature&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject"
}
}

Use Cases

  • Professional print media: High-quality, photorealistic outputs (sd3.5-large)
  • Rapid concept iteration: Fast, prompt-faithful exploration of ideas (sd3.5-large-turbo, sd3.5-flash)
  • Balanced everyday generation: Efficient high-performance visuals (sd3.5-medium)
  • Image-to-image transformation: Restyle or transform a reference image with a text prompt