Make sure you add your s3 details for realtime server, so you can receive image generated in your bucket. Images generated without s3 details being added will be delete after 24hours

Request

Make a POST request to below endpoint and pass the required parameters as a request body to the endpoint.
curl
--request POST 'https://modelslab.com/api/v1/enterprise/3d/image_to_3d' \

Body

json
{   
  "key": "enterprise_api_key",    
  "image": "https://i.pinimg.com/736x/7c/83/64/7c83645c903677dd93ef50fe953dceea.jpg",    
  "ss_sampling_steps" : 50,    
  "slat_sampling_steps" : 50,    
  "output_format":"glb",    
  "webhook": null,    
  "track_id": null,    
  "temp": "no"
}

Body Attributes

key
string
required
Your API Key used for request authorization.
image
string
required
The input image for 3D conversion.
render
bool
default:"false"
Whether to render a NeRF video of the 3D model.
output_format
string
default:"obj"
The format of the output 3D object (glb, obj, stl, ply).
resolution
number
default:"256"
Specifies the resolution of the generated 3D model. Max: 512.
multi_image
bool
default:"false"
Determines whether multiple images are processed together. When set to true, image should contain multiple POVs of the subject in a transparent PNG.
ss_guidance_strength
number
default:"7.5"
Controls the strength of style-space guidance.
ss_sampling_steps
number
default:"12"
Number of sampling steps for style-space guidance. Range: 1 to 50.
slat_guidance_strength
number
default:"3.0"
Controls the strength of slat guidance. Range: 0.0 to 10.0.
slat_sampling_steps
number
default:"12"
Number of sampling steps for slat guidance. Range: 1 to 50.
mesh_simplify
number
default:"0.90"
Degree of mesh simplification. Range: 0.90 to 0.98.
chunk_size
number
default:"8192"
Size of chunks used in the process (affects VRAM usage). Max: 12000.
seed
number
default:"0"
Random seed for reproducibility. If set to 0, a random seed will be generated.
temp
string
default:"no"
If set to "yes", the output files will be saved in a temporary directory.