Hitem3D 2.0 API

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.

Hitem3D3D-GenerationMalaysiaProprietärer Endpoint

Über Hitem3D 2.0

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.

image to 3dmulti viewhigh polytexture generation

Hitem3D 2.0 Spezifikationen

Modell-ID
hitem3d-2-0
Anbieter
Hitem3D
Kategorie
3D-Generation
Veröffentlicht
-
Eingabe
Bild
Ausgabe
3D
Region
Malaysia
Endpoints
POST/v1/3d/generations
Alternative Modell-IDs
hitem3d-2.0hitem3d-2-0-251223

Hitem3D 2.0 API-Preise

Live Pay-as-you-go-Preise aus dem EmpirioLabs-Katalog. Du zahlst nur für das, was du nutzt, ohne monatliches Minimum.

Typ
Spezifikation
Preis
1536 textured
per request
$2.80
1536 Pro textured
per request
$3.60
1536 white model
per request
$1.60
1536 Pro white model
per request
$2.40
Auf der vollständigen Preisseite vergleichen

So rufst du die Hitem3D 2.0 API auf

Hitem3D 2.0 läuft über POST /v1/3d/generations. Der Request liefert sofort eine job_id; frage GET /v1/jobs/{job_id} ab, bis der Job abgeschlossen ist, und lies die Ausgabe-URLs aus dem Ergebnis. Hol dir einen API-Schlüssel im EmpirioLabs Dashboard.

cURL: Job senden
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: Ergebnis abfragen
curl https://api.empiriolabs.ai/v1/jobs/JOB_ID \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY"
Python
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)
Vollständige Hitem3D 2.0 API-Referenz

Hitem3D 2.0 API-Parameter

Request-Parameter, die die Hitem3D 2.0 API auf EmpirioLabs unterstützt. Standardwerte gelten, wenn ein Feld weggelassen wird.

ParameterTypStandardBereich / WerteBeschreibung
imageimage--One to four input images of the object. With multiple views, use multi_images_bit to declare the view order.
promptstring--Optional guidance text for the generation.
resolutionenum15361536, 1536proGeometry resolution. 1536pro is the high-precision tier and bills at a higher per-generation rate.
texturebooleantrue-Generate textures with the geometry. Off returns a white model at a lower per-generation rate.
face_countinteger-100000 bis 2000000Target polygon count of the output mesh.
file_formatenumglbglb, obj, stl, fbx, usdz3D file format of the generated model.

Gut zu wissen

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.

Controls

  • 1536 standard or 1536 Pro high-precision geometry.
  • texture on generates geometry and textures together in one pass; off returns a white model at a lower rate.
  • Target face count from 100,000 to 2,000,000, and glb, obj, stl, fbx, or usdz output.

Input limits

  • Images: jpg, jpeg, png, or webp, under 4096x4096 px and 10 MB each, provided as URLs.

Ausgabe

  • The generated file is stored and returned as a signed download URL.

Hitem3D 2.0 API: häufige Fragen

Wie viel kostet die Hitem3D 2.0 API?

Auf EmpirioLabs wird Hitem3D 2.0 nach Verbrauch abgerechnet: 1536 textured $2.80 per request; 1536 Pro textured $3.60 per request; 1536 white model $1.60 per request. Die Live-Preistabelle auf dieser Seite entspricht immer dem, was die API berechnet.

Welchen Endpoint verwendet Hitem3D 2.0?

Hitem3D 2.0 wird über POST /v1/3d/generations auf api.empiriolabs.ai mit normaler Bearer-Token-Authentifizierung bereitgestellt.

Kann ich Hitem3D 2.0 im Browser testen, bevor ich integriere?

Ja. Der EmpirioLabs Playground führt Hitem3D 2.0 im Browser mit denselben Parametern aus, die die API bietet. So kannst du Prompts testen, bevor du Code schreibst.

Wie bekomme ich einen Hitem3D 2.0 API-Schlüssel?

Erstelle ein EmpirioLabs-Konto und generiere dann einen Schlüssel unter API Keys im Dashboard. Die Abrechnung erfolgt über Pay-as-you-go-Guthaben, du zahlst also nur für deine Requests.

Bereit, bessere Endpunkte zu nutzen?

Schauen Sie sich unsere Preise an oder kontaktieren Sie uns, wenn Sie Ihr eigenes Modell auf unserem Stack implementieren möchten.