Tencent Hunyuan 3D Motion — generates animated 3D motion output (fbx) from a text prompt, delivered through an asynchronous task API: submit a prompt, poll for the downloadable model URL.
| NovAI | OpenRouter | ||
|---|---|---|---|
| Per generation Flat price (default tier), pre-deducted at submit | $0.185 / gen | N/A | Exclusive |
| Failed / cancelled job Automatic refund to your balance | $0 (refunded) | N/A |
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-motion",
"prompt": "a cute cartoon dog, stylized, game-ready"
}'
# -> { "id": "", "status": "queued" } curl "https://api.aiapi-pro.com/v1/three_d/generations/{task_id}?model=hy-3d-motion" -H "Authorization: Bearer $NOVAI_API_KEY"
# -> { "status": "processing" } ... then when done:
# -> { "status": "succeeded", "model_url": "https://.../model.glb",
# "outputs": [ { "type": "fbx", "url": "https://...", "preview_image_url": "https://..." } ] }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.