Skip to main content

Enterprise: Text to 3D Endpoint

Overview

This endpoint generates an 3d object from a text prompt.

caution

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

Request

--request POST 'https://modelslab.com/api/v1/enterprise/3d/text_to_3d' \

Make a POST request to https://modelslab.com/api/v1/enterprise/3d/text_to_3d endpoint and pass the required parameters as a request body.

Body Attributes

ParameterDescription
key (required)Your API Key used for request authorization.
model_id (optional, default="instantmesh")Specifies the model to be used for the 3D generation.
prompt (required, default="A full body mesh of a dog")Text prompt for generating the 3D model.
render (optional, default=false)Whether to render a NeRF video of the 3D model.
negative_prompt (optional, default="")Negative prompt to exclude certain elements.
guidance_scale (required, default=0.0)Controls the guidance between the prompt and the generated model.
num_inference_steps (required, default=10)The number of inference steps to generate the 3D model.
foreground_ratio (required, default=0.85)Ratio of the foreground size to the image size. Only used when remove_bg is enabled.
remove_bg (optional, default=false)If true, removes the background from the generated 3D model.
resolution (required, default=256, max=512)Specifies the resolution of the generated 3D model.
chunk_size (optional, default=8192, max=12000)Size of chunks used in the process (affects VRAM usage).
seed (optional, default=0)Random seed for reproducibility. If set to 0, a random seed will be generated.
temp (optional, default="no")If set to "yes", the output files will be saved in a temporary directory.

Example

Body

Body
{
"key": "",
"model_id": "instantmesh",
"prompt": "A full body mesh of a dog",
"negative_prompt": "",
"guidance_scale": 0.0,
"num_inference_steps": 10,
"foreground_ratio": 0.85,
"remove_bg": false,
"resolution": 256,
"chunk_size": 8192,
"seed": 0,
"temp": "no"
}

Request

var myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");

var raw = JSON.stringify({
"key": "",
"model_id": "instantmesh",
"prompt": "A full body mesh of a dog",
"negative_prompt": "",
"guidance_scale": 0.0,
"num_inference_steps": 10,
"foreground_ratio": 0.85,
"remove_bg": false,
"resolution": 256,
"chunk_size": 8192,
"seed": 0,
"temp": "no"
});

var requestOptions = {
method: 'POST',
headers: myHeaders,
body: raw,
redirect: 'follow'
};

fetch("https://modelslab.com/api/v1/enterprise/3d/text_to_3d", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));

Response


{
"status": "success",
"warning": "",
"id": null,
"generationTime": 20.85,
"output": [
"https://pub-3626123a908346a7a8be8d9295f44e26.r2.dev/out/3dfadd74-05e3-40cc-969a-96196d239162.obj"
],
"proxy_links": [
"https://cdn2.stablediffusionapi.com/out/3dfadd74-05e3-40cc-969a-96196d239162.obj"
],
"nsfw_content_detected": false,
"webhook_status": "",
"meta": {
"chunk_size": 8192,
"file_prefix": "3dfadd74-05e3-40cc-969a-96196d239162",
"foreground_ratio": ".85",
"guidance_scale": 10,
"negative_prompt": "low quality",
"num_inference_steps": 10,
"prompt": "Image of a car",
"remove_bg": true,
"render": false,
"resolution": 256,
"seed": 1782676780,
"temp": "no"
}
}