Tripo3D H3.1 Text-to-3D generates high-quality 3D models from text descriptions. Supports textures with standard and HD quality, PBR materials, detailed geometry, quad mesh topology, and auto-sizing. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
待機中
$0.11回あたり·~10 / $1
A chubby cartoon panda wearing a red scarf, big round head, stubby limbs, matte plush texture, cute stylized proportions
Tripo3D H3.1 Text-to-3D generates a production-ready 3D model directly from a text description. Describe the object you want — the model creates accurate geometry with optional PBR textures, quad mesh topology, and detailed quality tiers for both geometry and texture. No reference image needed.
Text-driven 3D generation Create 3D models from natural language descriptions alone — no photography or reference images required.
Negative prompt support Specify features to avoid in the generated model for more precise control over the output geometry and style.
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.
Quad mesh support Generate quad (4-sided) mesh topology instead of triangles for cleaner topology compatible with animation and sculpting workflows.
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the 3D object to generate. Max 1024 characters. |
| negative_prompt | No | Features to avoid in the generated model. Max 1024 characters. |
| 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. |
| auto_size | No | Auto-scale the model to real-world dimensions. Default: false. |
| 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/text-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 Text To 3d below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/tripo3d/h3.1/text-to-3d" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"negative_prompt": "blurry, low quality, distorted",
"texture": true,
"pbr": true,
"texture_quality": "standard",
"geometry_quality": "standard",
"auto_size": false,
"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/text-to-3d", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"negative_prompt": "blurry, low quality, distorted",
"texture": true,
"pbr": true,
"texture_quality": "standard",
"geometry_quality": "standard",
"auto_size": false,
"quad": false
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"tripo3d/h3.1/text-to-3d",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"negative_prompt": "blurry, low quality, distorted",
"texture": true,
"pbr": true,
"texture_quality": "standard",
"geometry_quality": "standard",
"auto_size": false,
"quad": false
}
)
print(output["outputs"][0]) # → URL of the generated outputH3.1 Text To 3d is a Tripo3D model for 3D asset generation, exposed as a REST API on WaveSpeedAI. Tripo3D H3.1 Text-to-3D generates high-quality 3D models from text descriptions. Supports textures with standard and HD quality, PBR materials, detailed geometry, quad mesh topology, and auto-sizing. 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-text-to-3d.
H3.1 Text 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: `prompt`, `negative_prompt`, `auto_size`, `geometry_quality`, `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-text-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.