
Production-focused image-to-3D with structure-aware textures, 1536 and 1536 Pro precision tiers, meshes up to two million faces, and five export formats.
Production-focused image-to-3D with structure-aware textures, 1536 and 1536 Pro precision tiers, meshes up to two million faces, and five export formats.
hitem3d-2-0/v1/3d/generationshitem3d-2.0hitem3d-2-0-251223Tarifs à l'usage en direct du catalogue EmpirioLabs. Vous ne payez que ce que vous utilisez, sans minimum mensuel.
Hitem3D 2.0 fonctionne via POST /v1/3d/generations. La requête renvoie immédiatement un job_id ; interrogez GET /v1/jobs/{job_id} jusqu'à la fin du job et lisez les URLs de sortie dans le résultat. Obtenez une clé API depuis le tableau de bord EmpirioLabs.
curl https://api.empiriolabs.ai/v1/3d/generations \
-H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "hitem3d-2-0",
"prompt": "Describe what you want Hitem3D 2.0 to generate."
}'curl https://api.empiriolabs.ai/v1/jobs/JOB_ID \
-H "Authorization: Bearer $EMPIRIOLABS_API_KEY"import requests
response = requests.post(
"https://api.empiriolabs.ai/v1/3d/generations",
headers={"Authorization": "Bearer YOUR_EMPIRIOLABS_API_KEY"},
json={
"model": "hitem3d-2-0",
"prompt": "Describe what you want Hitem3D 2.0 to generate.",
},
)
job = response.json()
# Generation runs as an async job. Poll until it completes.
import time
while True:
status = requests.get(
f"https://api.empiriolabs.ai/v1/jobs/{job['job_id']}",
headers={"Authorization": "Bearer YOUR_EMPIRIOLABS_API_KEY"},
).json()
if status.get("status") in ("completed", "failed"):
print(status)
break
time.sleep(5)Paramètres de requête pris en charge par l'API Hitem3D 2.0 sur EmpirioLabs. Les valeurs par défaut s'appliquent quand un champ est omis.
| Paramètre | Type | Par défaut | Plage / valeurs | Description |
|---|---|---|---|---|
| image | image | - | - | One to four input images of the object. With multiple views, use multi_images_bit to declare the view order. |
| prompt | string | - | - | Optional guidance text for the generation. |
| resolution | enum | 1536 | 1536, 1536pro | Geometry resolution. 1536pro is the high-precision tier and bills at a higher per-generation rate. |
| texture | boolean | true | - | Generate textures with the geometry. Off returns a white model at a lower per-generation rate. |
| face_count | integer | - | 100000 à 2000000 | Target polygon count of the output mesh. |
| file_format | enum | glb | glb, obj, stl, fbx, usdz | 3D file format of the generated model. |
Image-to-3D only: one to four views of the object (declare the view order with multi_images_bit in front, back, left, right order). Billing is per generated model at the tier for the chosen resolution and texture setting.
Sur EmpirioLabs, Hitem3D 2.0 est facturé à l'usage : 1536 textured $2.80 per request; 1536 Pro textured $3.60 per request; 1536 white model $1.60 per request. La grille tarifaire en direct de cette page correspond toujours à ce que l'API facture.
Hitem3D 2.0 est servi via POST /v1/3d/generations sur api.empiriolabs.ai avec une authentification standard par token Bearer.
Oui. Le playground EmpirioLabs exécute Hitem3D 2.0 dans le navigateur avec les mêmes paramètres que l'API expose, pour tester vos prompts avant d'écrire du code.
Créez un compte EmpirioLabs, puis générez une clé sous API Keys dans le tableau de bord. La facturation utilise des crédits à l'usage : vous ne payez que vos requêtes.
Consultez nos tarifs ou contactez-nous si vous souhaitez que votre propre modèle soit déployé sur notre stack.