Hyper3D Rodin v2.5 is a fast AI image-to-3D generation model that turns reference images into production-ready 3D assets 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 3D asset generation workflows with simple integration, no coldstarts, and affordable pricing.
대기 중
$0.4실행당·~25 / $10
Hyper3D Rodin V2.5 Image-to-3D generates 3D assets from one or more reference images, with optional text guidance and flexible controls for mesh density, texture output, geometry behavior, symmetry, pose, and export format. It is suitable for product concepts, stylized objects, character prototyping, game assets, and other image-to-3D workflows where you want direct control over geometry and material output.
Image-guided 3D generation
Turn one or more reference images 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
Use geometry_instruct_mode, symmetry options, and micro-detail settings to shape how the asset is built.
Multiple export formats
Export as glb, usdz, fbx, obj, or stl.
Production-ready workflow
Useful for concept art, product prototyping, game asset generation, and 3D content pipelines.
| Parameter | Required | Description |
|---|---|---|
| images | Yes | Reference images for generating the 3D model. Upload 1–5 images. |
| prompt | No | Optional text prompt. If empty, the model auto-generates a prompt from the images. |
| 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. |
| use_original_alpha | No | Preserve the transparency channel from input images. Default: false. |
| 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: 500K Triangle. |
| 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. |
| preview_render | No | Generate a preview render image of the 3D model. Default: false. |
1–5 images of the object, character, or asset you want to generate.Gen-2.5-Extreme-High when you need the highest-quality generation.quality_and_mesh, geometry_file_format, and material based on your downstream use.texture_mode, geometry_instruct_mode, is_symmetric, hd_texture, and related settings.addons = HighPack if you need higher-end texture and geometry output.Generate a clean 3D product model from multiple reference photos, with PBR materials and quad mesh output for downstream rendering or e-commerce visualization.
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 |
Gen-2.5-Extreme-High costs 2× the base priceHighPack adds an additional $0.80 per generationHighPack and Gen-2.5-Extreme-High stack togetherfaithful geometry mode when image fidelity matters more than creative interpretation.creative when you want the model to take more design liberties.texture_delight if you want cleaner textures with less baked lighting.is_micro when using Gen-2.5-Extreme-High, since it has no effect otherwise.HighPack only when you need the extra texture and geometry quality, since it increases cost significantly.images is required.prompt is optional; if omitted, the model can infer guidance from the images.Gen-2.5-Extreme-High doubles the base generation cost.HighPack adds an extra fixed charge on top of the selected tier.is_micro is only effective with Gen-2.5-Extreme-High.geometry_file_format defaults to glb.material defaults to All.quality_and_mesh defaults to 500K Triangle.Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/hyper3d/rodin-v2.5/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 Rodin v2.5 Image To 3d below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/hyper3d/rodin-v2.5/image-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",
"tier": "Gen-2.5-Medium",
"use_original_alpha": false,
"geometry_file_format": "glb",
"material": "All",
"quality_and_mesh": "500K Triangle",
"texture_mode": "legacy",
"geometry_instruct_mode": "faithful",
"hd_texture": false,
"texture_delight": false,
"is_symmetric": "unknown",
"is_micro": false,
"ta_pose": false,
"addons": "HighPack",
"preview_render": 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("hyper3d/rodin-v2.5/image-to-3d", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"tier": "Gen-2.5-Medium",
"use_original_alpha": false,
"geometry_file_format": "glb",
"material": "All",
"quality_and_mesh": "500K Triangle",
"texture_mode": "legacy",
"geometry_instruct_mode": "faithful",
"hd_texture": false,
"texture_delight": false,
"is_symmetric": "unknown",
"is_micro": false,
"ta_pose": false,
"addons": "HighPack",
"preview_render": false
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"hyper3d/rodin-v2.5/image-to-3d",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"tier": "Gen-2.5-Medium",
"use_original_alpha": false,
"geometry_file_format": "glb",
"material": "All",
"quality_and_mesh": "500K Triangle",
"texture_mode": "legacy",
"geometry_instruct_mode": "faithful",
"hd_texture": false,
"texture_delight": false,
"is_symmetric": "unknown",
"is_micro": false,
"ta_pose": false,
"addons": "HighPack",
"preview_render": false
}
)
print(output["outputs"][0]) # → URL of the generated outputRodin v2.5 Image To 3d is a Hyper3d model for 3D asset generation from images, exposed as a REST API on WaveSpeedAI. Hyper3D Rodin v2.5 is a fast AI image-to-3D generation model that turns reference images into production-ready 3D assets 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 3D asset generation workflows with simple integration, no coldstarts, and 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/hyper3d/hyper3d-rodin-v2.5-image-to-3d.
Rodin v2.5 Image To 3d starts at $0.40 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`, `images`, `addons`, `geometry_file_format`, `geometry_instruct_mode`, `hd_texture`. 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/hyper3d/hyper3d-rodin-v2.5-image-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 (Hyper3d). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.