POST
javascript
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 const axios = require('axios'); const FormData = require('form-data'); const api_key = "YOUR API-KEY"; const url = "https://api.segmind.com/v1/hunyuan3d-2mv"; const reqBody = { "seed": 1234, "steps": 30, "file_type": "glb", "back_image": "https://segmind-resources.s3.amazonaws.com/input/c2aaa604-ff80-4daa-8e17-19523116277b-df54088d-8eea-441d-8f74-8e38b17fd120.png", "left_image": "https://segmind-resources.s3.amazonaws.com/input/67a34835-feea-49b9-8aac-c6f7866c5812-c43ad400-6084-482b-9134-d0969e4b332c.png", "num_chunks": 200000, "front_image": "https://segmind-resources.s3.amazonaws.com/input/54d29fd1-a48f-4935-bc7f-5446420e1436-a08f2dbd-00e5-4bcb-a6f0-ea11f31aa82f-0471efb6-5439-40e8-9031-5374b7f50691.png", "right_image": "https://segmind-resources.s3.amazonaws.com/input/10f44971-5c5c-44c2-8b6c-6baa7a98e76c-380c79fa-3dd9-4b0c-ba05-485e8894b019.png", "guidance_scale": 5, "randomize_seed": true, "target_face_num": 10000, "octree_resolution": 256, "remove_background": true }; (async function() { try { const formData = new FormData(); // Append regular fields for (const key in reqBody) { if (reqBody.hasOwnProperty(key)) { formData.append(key, reqBody[key]); } } // Convert and append images as Base64 if necessary const response = await axios.post(url, formData, { headers: { 'x-api-key': api_key, ...formData.getHeaders() } }); console.log(response.data); } catch (error) { console.error('Error:', error.response ? error.response.data : error.message); } })();
RESPONSE
image/jpeg
HTTP Response Codes
200 - OKImage Generated
401 - UnauthorizedUser authentication failed
404 - Not FoundThe requested URL does not exist
405 - Method Not AllowedThe requested HTTP method is not allowed
406 - Not AcceptableNot enough credits
500 - Server ErrorServer had some issue with processing

Attributes


seedint ( default: -1 )

Seed value


stepsint ( default: 30 )

Number of inference steps

min : 1,

max : 100


file_typeenum:str ( default: glb )

An enumeration.

Allowed values:


back_imagestr ( default: 1 )

Back view image


left_imagestr ( default: 1 )

Left view image


num_chunksint ( default: 200000 )

Number of chunks

min : 1000,

max : 5000000


front_imagestr *

Front view image


right_imagestr ( default: 1 )

Right view image


guidance_scalefloat ( default: 5 )

Guidance scale


randomize_seedbool ( default: 1 )

Randomize seed


target_face_numint ( default: 10000 )

Target number of faces for mesh simplification

min : 100,

max : 1000000


octree_resolutionint ( default: 256 )

Octree resolution

min : 16,

max : 512


remove_backgroundbool ( default: true )

Remove image background

To keep track of your credit usage, you can inspect the response headers of each API call. The x-remaining-credits property will indicate the number of remaining credits in your account. Ensure you monitor this value to avoid any disruptions in your API usage.

Hunyuan3D-2mv 3D Model Generator from Images

Hunyuan3D-2mv, developed by Tencent and released on March 18, 2025, is a specialized iteration of the Hunyuan3D-2 framework, designed to enhance 3D asset generation by leveraging multiview controlled shape generation. Built on a scalable flow-based diffusion transformer architecture, this model excels at producing detailed, high-resolution 3D meshes from multiple input images—typically front, back, left, and right views. It’s part of the broader Hunyuan3D 2.0 ecosystem, which aims to democratize 3D content creation through open-source tools, making it accessible to both professional developers and hobbyists.

Strengths

The core strength of Hunyuan3D-2mv lies in its ability to interpret and synthesize geometry from multiple perspectives, ensuring better consistency and accuracy in the resulting 3D models compared to single-image-based methods. This multiview approach allows the model to capture intricate details and align the generated mesh closely with the provided conditional images. The process is remarkably fast, making it suitable for rapid prototyping and iterative workflows. Additionally, its open-source nature—available on platforms like Hugging Face and GitHub—means developers can customize and integrate it into their own pipelines, whether through code or tools like Blender add-ons.

For developers

For developers, Hunyuan3D-2mv offers several practical use cases. In game development, it can accelerate the creation of textured 3D assets, reducing the time from concept to implementation. Film and animation studios can use it to generate props or characters from concept art, streamlining pre-production. It’s also valuable in virtual reality (VR) and augmented reality (AR) applications, where consistent 3D models from multiple angles are crucial for immersive experiences. The model supports output formats like GLB, OBJ, PLY, and STL, making it versatile for 3D printing or further editing in software like Blender or Unity.

Unique Architecture

The model’s two-stage pipeline—first generating a bare mesh, then optionally applying high-resolution textures via Hunyuan3D-Paint—provides flexibility, allowing developers to focus on shape generation or full asset creation as needed. This decoupling of shape and texture generation enhances control and adaptability.

Conclusion

In summary, Hunyuan3D-2mv is a powerful tool for developers seeking to automate and enhance 3D modeling workflows. Its multiview capability, speed, and open-source availability make it ideal for creating detailed, production-ready 3D assets across industries like gaming, film, and VR, while its extensibility invites innovation and experimentation.