Hyper3d Rodin V2.5 Text To 3d
Playground
Try it on WavespeedAI!Hyper3D Rodin v2.5 Text to 3D is a fast AI 3D asset generation model that creates production-ready 3D assets from text prompts with clean meshes, UVs, and textures. Ready-to-use REST inference API for game assets, e-commerce 3D models, product visualization, AR/VR content, digital twins, creative design, and professional text-to-3D workflows with simple integration, no coldstarts, and affordable pricing.
Features
Hyper3D Rodin V2.5 Text-to-3D
Hyper3D Rodin V2.5 Text-to-3D generates 3D assets from natural-language prompts with flexible controls for mesh density, texture output, geometry behavior, symmetry, pose, and export format. It is suitable for product concepts, game assets, stylized objects, character prototyping, and other text-to-3D workflows where you want direct control over geometry and material output.
Why Choose This?
-
Prompt-based 3D generation
Turn a text description into a 3D asset with minimal setup. -
Flexible mesh and quality options
Choose between quad and triangle outputs across multiple density levels. -
Material and texture control
Generate PBR, shaded, full material sets, or geometry-only output depending on your workflow. -
Geometry behavior settings
Usegeometry_instruct_mode, symmetry options, and micro-detail settings to shape how the asset is built. -
Multiple export formats
Export asglb,usdz,fbx,obj, orstl. -
Production-ready workflow
Useful for concept art, product prototyping, game asset generation, and 3D content pipelines.
Parameters
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | A text prompt describing the 3D asset to generate. |
| tier | No | Generation tier. Supported values: Gen-2.5-Extreme-Low, Gen-2.5-Low, Gen-2.5-Medium, Gen-2.5-High, Gen-2.5-Extreme-High. Default: Gen-2.5-Medium. |
| geometry_file_format | No | Output geometry file format. Supported values: glb, usdz, fbx, obj, stl. Default: glb. |
| material | No | Material output type. Supported values: PBR, Shaded, All, None. Default: All. |
| quality_and_mesh | No | Combined quality and mesh type selection. Supported values: 4K Quad, 8K Quad, 18K Quad, 50K Quad, 2K Triangle, 20K Triangle, 150K Triangle, 500K Triangle. Default: 18K Quad. |
| texture_mode | No | Texture generation quality. Supported values: legacy, extreme-low, low, medium, high. Leave empty to let the provider choose. |
| geometry_instruct_mode | No | Geometry instruction mode. Supported values: faithful, creative. Default: faithful. |
| hd_texture | No | Enable enhanced texture post-processing. Default: false. |
| texture_delight | No | Remove baked lighting and highlights from generated textures. Default: false. |
| is_symmetric | No | Symmetry mode for the generated mesh. Supported values: symmetric, balanced, asymmetric, unknown. Default: unknown. |
| is_micro | No | Generate finer micro-scale geometric detail. Only effective with Gen-2.5-Extreme-High. Default: false. |
| ta_pose | No | Generate characters in T-pose or A-pose format. Default: false. |
| addons | No | Optional add-on. Supported value: HighPack. Enables 4K textures and higher-poly geometry. |
How to Use
- Write your prompt — describe the object, character, prop, or scene element you want to generate.
- Choose a tier — use the default tier for general work, or select
Gen-2.5-Extreme-Highwhen you need the highest-quality generation. - Choose mesh and format settings — set
quality_and_mesh,geometry_file_format, andmaterialbased on your downstream use. - Adjust geometry and texture controls (optional) — fine-tune
texture_mode,geometry_instruct_mode,is_symmetric,hd_texture, and related settings. - Add HighPack (optional) — enable
addons = HighPackif you need higher-end texture and geometry output. - Submit — run the model and download the generated 3D asset.
Example Prompt
A premium sci-fi helmet with matte black shell, subtle red light accents, clean hard-surface paneling, realistic materials, game-ready design
Pricing
Pricing is charged per generation.
| Configuration | Cost |
|---|---|
| Standard tier | $0.40 |
| Gen-2.5-Extreme-High | $0.80 |
| Standard tier + HighPack | $1.20 |
| Gen-2.5-Extreme-High + HighPack | $1.60 |
Billing Rules
- Base price is $0.40 per generation
Gen-2.5-Extreme-Highcosts 2× the base priceHighPackadds an additional $0.80 per generationHighPackandGen-2.5-Extreme-Highstack together- Other parameters do not affect pricing
Best Use Cases
- Game asset prototyping — Generate early 3D assets for weapons, props, characters, and environment objects.
- Product concept modeling — Explore 3D product forms from text descriptions.
- Character base generation — Create initial meshes for stylized or realistic character workflows.
- AR/VR content preparation — Build assets for immersive applications and previews.
- Creative 3D ideation — Rapidly test multiple directions before manual refinement.
Pro Tips
- Keep prompts visually specific about shape, material, and intended style.
- Use
faithfulgeometry mode when prompt accuracy matters more than creative interpretation. - Use
creativewhen you want the model to take more design liberties. - Choose quad output when downstream retopology or sculpting workflows matter.
- Use
texture_delightif you want cleaner textures with less baked lighting. - Only enable
is_microwhen usingGen-2.5-Extreme-High, since it has no effect otherwise. - Add
HighPackonly when you need the extra texture and geometry quality, since it increases cost significantly.
Notes
promptis required.Gen-2.5-Extreme-Highdoubles the base generation cost.HighPackadds an extra fixed charge on top of the selected tier.is_microis only effective withGen-2.5-Extreme-High.geometry_file_formatdefaults toglb.materialdefaults toAll.quality_and_meshdefaults to18K Quad.
Related Models
- Other Hyper3D Rodin workflows — Useful when you need image-to-3D or different 3D generation paths.
- 3D asset generation pipelines — Useful when text-to-3D is only one part of a broader modeling workflow.
- High-detail asset workflows — Useful when downstream rendering, real-time engines, or modeling tools need more specific export formats or mesh structures.
Authentication
For authentication details, please refer to the Authentication Guide.
API Endpoints
Submit Task & Query Result
# Submit the task
curl --location --request POST "https://api.wavespeed.ai/api/v3/hyper3d/rodin-v2.5/text-to-3d" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}" \
--data-raw '{
"tier": "Gen-2.5-Medium",
"geometry_file_format": "glb",
"material": "All",
"quality_and_mesh": "18K Quad",
"geometry_instruct_mode": "faithful",
"hd_texture": false,
"texture_delight": false,
"is_symmetric": "unknown",
"is_micro": false,
"ta_pose": false
}'
# Get the result
curl --location --request GET "https://api.wavespeed.ai/api/v3/predictions/${requestId}/result" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}"
Parameters
Task Submission Parameters
Request Parameters
| Parameter | Type | Required | Default | Range | Description |
|---|---|---|---|---|---|
| prompt | string | Yes | - | A text prompt describing the 3D asset to generate. | |
| tier | string | No | Gen-2.5-Medium | Gen-2.5-Extreme-Low, Gen-2.5-Low, Gen-2.5-Medium, Gen-2.5-High, Gen-2.5-Extreme-High | Generation tier. Extreme-High bills at double the base rate. |
| geometry_file_format | string | No | glb | glb, usdz, fbx, obj, stl | Output geometry file format. |
| material | string | No | All | PBR, Shaded, All, None | Material output type. |
| quality_and_mesh | string | No | 18K Quad | 4K Quad, 8K Quad, 18K Quad, 50K Quad, 2K Triangle, 20K Triangle, 150K Triangle, 500K Triangle | Combined quality and mesh type selection. |
| texture_mode | string | No | - | legacy, extreme-low, low, medium, high | Texture generation quality. Leave empty to let the provider choose. |
| geometry_instruct_mode | string | No | faithful | faithful, creative | Faithful follows the prompt closely; creative allows more variation. |
| hd_texture | boolean | No | false | - | Enable enhanced texture post-processing. |
| texture_delight | boolean | No | false | - | Remove baked lighting and highlights from generated textures. |
| is_symmetric | string | No | unknown | symmetric, balanced, asymmetric, unknown | Symmetry mode for the generated mesh. |
| is_micro | boolean | No | false | - | Generate finer micro-scale geometric detail. Only effective with Extreme-High tier. |
| ta_pose | boolean | No | false | - | Generate characters in T-pose or A-pose format. |
| addons | string | No | - | HighPack | Optional HighPack add-on for 4K textures and higher-poly geometry. |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data.id | string | Unique identifier for the prediction, Task Id |
| data.model | string | Model ID used for the prediction |
| data.outputs | array | Array of URLs to the generated content (empty when status is not completed) |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |
Result Request Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| id | string | Yes | - | Task ID |
Result Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data | object | The prediction data object containing all details |
| data.id | string | Unique identifier for the prediction, the ID of the prediction to get |
| data.model | string | Model ID used for the prediction |
| data.outputs | string | Array of URLs to the generated content. |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |