3D Model

SeaCloud provides various 3D model generation models including Hunyuan, Tripo3D, and more. Each model has its own dedicated API endpoint and parameters.


How to Use 3D Model Generation Models

1

Visit the Models page

Select the "3D" type.

2

Browse and select

Choose a 3D model generation model.

3

View the API tab

View the complete curl example and parameter description in the "API" tab on the model details page.

4

Copy and replace

Copy the example code and replace with your API Key and parameters.


Example: Using Tripo3D Image to Model

Here is an example of generating a 3D model from an image using Tripo3D Image to Model:

curl
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
        }
      }
    ]
  }'

Note: Different 3D model generation models have different parameters. For example, Tripo3D Image to Model above uses file, model_version, and texture, while other models may use different parameter names and values. Please check the specific model API documentation for supported parameters.


Last updated