🧊

Hunyuan 3D 3.0

Tencent Hunyuan · 3D Generation

Tencent Hunyuan 3D 3.0 — high-quality text/image-to-3D mesh generation with obj and glb output, delivered through an asynchronous task API: submit a prompt, poll for the downloadable model URL.

📊 Specifications

Mode
Async task
Input
Text / Image
Output
obj (zip) + glb
Endpoint
/v1/three_d/generations
Billing
Flat / generation
Status
✅ Available

💰 Pricing

NovAIOpenRouter
Per generation
Flat price (default tier), pre-deducted at submit
$0.369 / genN/AExclusive
Failed / cancelled job
Automatic refund to your balance
$0 (refunded)N/A
TokenHub bills 3D upstream by credits and returns no token usage, so NovAI charges a flat per-generation price. The full amount is pre-deducted at submit and refunded in full if the job fails or is cancelled — you only pay for successful generations. Only the default generation mode is exposed, so the flat price always matches the upstream cost.

🚀 API Usage

1. Submit — Text-to-3D

curl -X POST https://api.aiapi-pro.com/v1/three_d/generations \
  -H "Authorization: Bearer $NOVAI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "hy-3d-3.0",
    "prompt": "a cute cartoon dog, stylized, game-ready"
  }'
# -> { "id": "", "status": "queued" }

2. Poll Task Status

curl "https://api.aiapi-pro.com/v1/three_d/generations/{task_id}?model=hy-3d-3.0"   -H "Authorization: Bearer $NOVAI_API_KEY"
# -> { "status": "processing" } ... then when done:
# -> { "status": "succeeded", "model_url": "https://.../model.glb",
#      "outputs": [ { "type": "glb", "url": "https://...", "preview_image_url": "https://..." } ] }
Async flow: POST /v1/three_d/generations returns {id, status:"queued"}. Poll GET /v1/three_d/generations/{id} until status is succeeded (then model_url is the primary downloadable asset and outputs lists every format) or failed (auto-refunded). Generation typically takes 1–8 minutes.
🚀 Get Free $2 Credit← Compare All Models