Every model below is billed at a flat per-generation price, pre-deducted when you submit and refunded in full if the job fails or is cancelled — you only pay for successful meshes.
| Model | Per generation | Input | Output |
|---|---|---|---|
| hy-3d-motion (Hunyuan) | $0.185 | text / image | fbx (3D motion) |
| hy-3d-express (Hunyuan) | $0.277 | text / image | obj zip |
| tripo-3d-3.1 / tripo-3d-p1 (VAST) | $0.323 | text / image | glb |
| hy-3d-3.0 / hy-3d-3.1 (Hunyuan) | $0.369 | text / image | obj zip + glb |
| hy-3d-polygen-image (Hunyuan) | $0.554 | image (required) | glb + obj + fbx |
| Provider | Access model | Effective per-model cost |
|---|---|---|
| Meshy | Subscription ($19–$40/mo, credit packs) | ~$0.40 / model |
| Tripo (direct) | Subscription (~$90/mo annual) | ~$0.16–$0.30 / model |
| NovAI (Hunyuan 3D + Tripo) | Pay-as-you-go, no subscription | $0.185–$0.554 / generation |
The honest takeaway: a heavy Tripo subscriber can drive per-model cost down toward $0.16, but only by committing to a monthly plan and staying inside one vendor’s ecosystem. NovAI’s Hunyuan 3D line starts below that at $0.185 with zero commitment, gives you both Hunyuan and Tripo behind the same key, and refunds failures — which subscription credits usually do not.
3D generation is asynchronous. Submit a prompt (or an image), get a task id, then poll until the mesh is ready.
curl -X POST https://aiapi-pro.com/v1/three_d/generations \
-H "Authorization: Bearer $NOVAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"hy-3d-3.1","prompt":"a cute cartoon dog, stylized, game-ready"}'
# -> { "id": "<task_id>", "status": "queued" }
curl "https://aiapi-pro.com/v1/three_d/generations/<task_id>?model=hy-3d-3.1" \
-H "Authorization: Bearer $NOVAI_API_KEY"
# -> { "status": "succeeded",
# "model_url": "https://.../model.glb",
# "outputs": [ { "type": "glb", "url": "...", "preview_image_url": "..." } ] }
Generation typically takes 1–8 minutes. model_url is the primary asset (glb preferred) and outputs lists every available format.
NovAI gives you OpenAI-compatible access to 85 Chinese frontier models — video, image, 3D, audio and chat — on a prepaid balance with no subscription and zero platform fee. $2 free credit on signup, no card required.
Start Free →