3D Model
SeaCloud provides various 3D model generation models including Hunyuan, Tripo3D, and more. Each model has its own dedicated API endpoint and parameters.
Important: Each 3D model generation model has its own API endpoint and parameter structure. Please visit the Models page to see the calling method for specific models.
How to Use 3D Model Generation Models
3
Example: Using Tripo3D Image to Model
Here is an example of generating a 3D model from an image using Tripo3D Image to Model:
curl --location 'https://cloud.seaart.ai/api/v1/tripo3d_image_to_model/generate' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"model": "tripo3d_image_to_model",
"input": [
{
"params": {
"file": {
"url": "https://example.com/product-image.jpg",
"file_token": "example_file_token",
"object": "example_object",
"type": "example_type"
},
"model_version": "Turbo-v1.0-20250506",
"model_seed": 42,
"face_limit": 42,
"texture": true,
"pbr": true
}
}
]
}'Recommended: Visit the Models page to see all available 3D model generation models, each with complete API examples.
Last updated