Hunyuan3D V3 Image-to-3D

Model Information

Display Name: Hunyuan3D V3 Image-to-3D

API Model ID: tencent/hunyuan3d-v3-image-to-3d

Category: Image To 3D

Description: Tencent Hunyuan3D V3 is the latest generation of Tencent's 3D generation model, producing high-quality 3D assets from 1-4 input images. Supports multiple output modes including standard, low-poly, and geometry-only generation with optional PBR materials. **Key Features:** - Multi-view input: 1-4 images (front, back, left, right) - Three generation modes: Normal, LowPoly, Geometry - Optional PBR (Physically Based Rendering) materials - Configurable face count: 40K to 1.5M polygons - Triangle or quadrilateral polygon output - GLB format output **Capabilities:** - Multi-view image-to-3D reconstruction - Normal map and texture generation - PBR material generation (metallic, roughness, etc.) - Low-poly mesh generation for games - Geometry-only export for custom texturing - Fine polygon count control **Best For:** - Game asset creation from concept art - 3D product visualization from photos - Rapid 3D prototyping from multiple angles - AR/VR content creation - E-commerce 3D product models - Architectural visualization **Input Requirements:** - Images: 1 (front, required) + up to 3 optional (back, left, right) - More views improve reconstruction accuracy **Output Options:** - Format: GLB (GL Transmission Format Binary) - Modes: Normal (full texture), LowPoly (game-ready), Geometry (mesh only) - PBR: Optional metallic/roughness/normal maps - Polygons: 40,000 to 1,500,000 faces - Polygon Type: Triangle or Quadrilateral **Pricing Tiers:** - Geometry mode: base price - Normal mode: standard pricing - LowPoly mode: premium pricing - PBR materials: additional cost **Limitations:** - Maximum 4 input images - Best results with consistent lighting across views - Complex scenes may require manual cleanup

How to Use This Model

To use Hunyuan3D V3 Image-to-3D via the HInow.ai API, use the model ID: tencent/hunyuan3d-v3-image-to-3d

API Request Example (Image Generation)


POST https://api.hinow.ai/v1/images
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "tencent/hunyuan3d-v3-image-to-3d",
  "prompt": "Your image description here"
}
              

Pricing

  • total: $0.315

Available Parameters

  • generate_type: Normal includes textures, LowPoly for game assets, Geometry is mesh only (Options: Normal, LowPoly, Geometry)
  • enable_pbr: Enable PBR material generation (Options: true, false)
  • face_count: Target polygon face count (Options: 10000, 20000, 40000, 80000, 120000)
  • polygon_type: Polygon mesh type (Options: triangle, quadrilateral)

Quick Reference

To use this model, set: "model": "tencent/hunyuan3d-v3-image-to-3d"

Featured: No

Documentation: https://hinow.ai/models/tencent/hunyuan3d-v3-image-to-3d

API Endpoint: https://api.hinow.ai/v1

Back to Models

Hunyuan3D V3 Image-to-3D

tencent/hunyuan3d-v3-image-to-3d

$0.315
per image

About

Tencent Hunyuan3D V3 is the latest generation of Tencent's 3D generation model, producing high-quality 3D assets from 1-4 input images. Supports multiple output modes including standard, low-poly, and geometry-only generation with optional PBR materials.

Key Features:

  • Multi-view input: 1-4 images (front, back, left, right)
  • Three generation modes: Normal, LowPoly, Geometry
  • Optional PBR (Physically Based Rendering) materials
  • Configurable face count: 40K to 1.5M polygons
  • Triangle or quadrilateral polygon output
  • GLB format output

Capabilities:

  • Multi-view image-to-3D reconstruction
  • Normal map and texture generation
  • PBR material generation (metallic, roughness, etc.)
  • Low-poly mesh generation for games
  • Geometry-only export for custom texturing
  • Fine polygon count control

Best For:

  • Game asset creation from concept art
  • 3D product visualization from photos
  • Rapid 3D prototyping from multiple angles
  • AR/VR content creation
  • E-commerce 3D product models
  • Architectural visualization

Input Requirements:

  • Images: 1 (front, required) + up to 3 optional (back, left, right)
  • More views improve reconstruction accuracy

Output Options:

  • Format: GLB (GL Transmission Format Binary)
  • Modes: Normal (full texture), LowPoly (game-ready), Geometry (mesh only)
  • PBR: Optional metallic/roughness/normal maps
  • Polygons: 40,000 to 1,500,000 faces
  • Polygon Type: Triangle or Quadrilateral

Pricing Tiers:

  • Geometry mode: base price
  • Normal mode: standard pricing
  • LowPoly mode: premium pricing
  • PBR materials: additional cost

Limitations:

  • Maximum 4 input images
  • Best results with consistent lighting across views
  • Complex scenes may require manual cleanup

Capabilities

Image To 3D

Parameters

generate_type

Normal includes textures, LowPoly for game assets, Geometry is mesh only

NormalLowPolyGeometry
enable_pbr

Enable PBR material generation

truefalse
face_count

Target polygon face count

10000200004000080000120000
polygon_type

Polygon mesh type

trianglequadrilateral

Code Examples

curl -X POST https://api.hinow.ai/v1/images \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "tencent/hunyuan3d-v3-image-to-3d",
    "prompt": "Transform this image into cyberpunk style",
    "images": [
      "https://example.com/image1.jpg",
      "data:image/png;base64,iVBORw0KGgo..."
    ],
    "parameters": {
      "generate_type": "Normal",
      "enable_pbr": "true",
      "face_count": "10000",
      "polygon_type": "triangle"
    }
  }'