Tripo3D H3.1 Multiview-to-3D generates high-quality 3D models from 2-4 multi-angle images. Supports standard and HD texture quality, PBR materials, detailed geometry, quad mesh topology, texture alignment, and orientation control. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Ocioso
$0.1por execução·~10 / $1
Tripo3D H3.1 Multiview-to-3D reconstructs a production-ready 3D model from 2 to 4 reference images of the same object taken from different angles. Upload front, left, back, and right views — the model generates accurate geometry with optional PBR textures, quad mesh topology, and detailed quality tiers for both geometry and texture.
Multi-view 3D reconstruction Provide 2–4 images from different angles for significantly more accurate geometry than single-image reconstruction.
PBR material generation Generate Physically Based Rendering materials alongside the mesh for realistic real-time rendering in game engines and 3D tools.
Geometry and texture quality tiers Choose between standard and detailed quality independently for geometry and texture — optimizing for speed, cost, or maximum fidelity.
Quad mesh support Generate quad (4-sided) mesh topology instead of triangles for cleaner topology compatible with animation and sculpting workflows.
Texture alignment control Align textures to the original input image or to the generated geometry for different use case requirements.
Orientation control Use align_image to auto-rotate the model to match the input image orientation.
| Parameter | Required | Description |
|---|---|---|
| images | Yes | 2–4 image URLs of the same object from different angles. Order: front, left, back, right. Front is required. |
| texture | No | Whether to generate textures for the model. Default: true. |
| pbr | No | Whether to generate PBR materials. Requires texture to be enabled. Default: true. |
| texture_quality | No | Texture quality: standard (default) or detailed (higher resolution). |
| geometry_quality | No | Geometry quality: standard (default) or detailed. |
| texture_alignment | No | How textures are aligned: original_image (default) or geometry. |
| auto_size | No | Auto-scale the model to real-world dimensions. Default: false. |
| orientation | No | Model orientation: default or align_image (auto-rotates to match input image). |
| quad | No | Generate quad mesh topology instead of triangles. Default: false. |
| Texture | Texture Quality | Geometry Quality | Quad | Cost |
|---|---|---|---|---|
| No | — | Standard | No | $0.10 |
| No | — | Detailed | No | $0.30 |
| Yes | Standard | Standard | No | $0.20 |
| Yes | Standard | Detailed | No | $0.40 |
| Yes | Detailed | Standard | No | $0.30 |
| Yes | Detailed | Detailed | No | $0.50 |
Add +$0.05 to any combination above when quad is enabled.
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/tripo3d/h3.1/image-to-3d with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for H3.1 Multiview To 3d below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/tripo3d/h3.1/image-to-3d" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"texture": true,
"pbr": true,
"texture_quality": "standard",
"geometry_quality": "standard",
"texture_alignment": "original_image",
"auto_size": false,
"orientation": "default",
"quad": false
}'
# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# When status is "completed", read the output from data.outputs[0].// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env
const result = await client.run("tripo3d/h3.1/multiview-to-3d", {
"texture": true,
"pbr": true,
"texture_quality": "standard",
"geometry_quality": "standard",
"texture_alignment": "original_image",
"auto_size": false,
"orientation": "default",
"quad": false
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"tripo3d/h3.1/multiview-to-3d",
{
"texture": true,
"pbr": true,
"texture_quality": "standard",
"geometry_quality": "standard",
"texture_alignment": "original_image",
"auto_size": false,
"orientation": "default",
"quad": false
}
)
print(output["outputs"][0]) # → URL of the generated outputH3.1 Multiview To 3d is a Tripo3D model for 3D asset generation from images, exposed as a REST API on WaveSpeedAI. Tripo3D H3.1 Multiview-to-3D generates high-quality 3D models from 2-4 multi-angle images. Supports standard and HD texture quality, PBR materials, detailed geometry, quad mesh topology, texture alignment, and orientation control. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/tripo3d/tripo3d-h3.1-multiview-to-3d.
H3.1 Multiview To 3d starts at $0.10 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `images`, `auto_size`, `geometry_quality`, `orientation`, `pbr`, `quad`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/tripo3d/tripo3d-h3.1-multiview-to-3d.
Sign up for a free WaveSpeedAI account to claim starter credits, copy your API key from /accesskey, then call the endpoint shown in the API tab of the playground. The playground also auto-generates a code sample in Python, JavaScript, or cURL for the parameters you've set.
Commercial usage rights depend on the model's license, set by its provider (Tripo3D). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.