Skip to main content

Stable Image - 3D Image Generator

Generate 3D images from 2D images using Stable Image AI model.

Endpoint

Request Body

The request must include the following parameters:

ParameterTypeRequiredDescription
typestringYesFeature type identifier. Must be IMAGE_3D_GENERATOR
modelstringYesAI model identifier. Must be stable-image
promptObjectobjectYesFeature-specific parameters

Prompt Object Parameters

ParameterTypeRequiredDescription
imageUrlstringYesPath to the image

Example Request

fetch('https://api.1min.ai/api/features', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'API-KEY': 'YOUR_API_KEY'
},
body: JSON.stringify({
type: 'IMAGE_3D_GENERATOR',
model: 'stable-image',
promptObject: {
imageUrl: 'development/images/2025_02_18_17_07_32_777_cờ_vua.jpg'
}
})
})

Responses

Success Response (200)

Successful response contains the generated 3D image.

{}