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.

Hitem3D三维生成Malaysia专有端点

关于 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 规格

模型 ID
hitem3d-2-0
提供方
Hitem3D
类别
三维生成
发布日期
-
输入
图像
输出
3D
区域
Malaysia
端点
POST/v1/3d/generations
备用模型 ID
hitem3d-2.0hitem3d-2-0-251223

Hitem3D 2.0 API 价格

来自 EmpirioLabs 目录的实时按量计费价格。只为实际用量付费,没有月度最低消费。

类型
规格
价格
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
在完整价格页比较

如何调用 Hitem3D 2.0 API

Hitem3D 2.0 通过 POST /v1/3d/generations 运行。请求会立即返回 job_id;轮询 GET /v1/jobs/{job_id} 直到任务完成,再从结果中读取输出 URL。 在EmpirioLabs 控制台获取 API 密钥。

cURL:提交任务
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:轮询结果
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)
Hitem3D 2.0 API 完整参考

Hitem3D 2.0 API 参数

EmpirioLabs 上 Hitem3D 2.0 API 支持的请求参数。省略字段时使用默认值。

参数类型默认值范围 / 值描述
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 到 2000000Target polygon count of the output mesh.
file_formatenumglbglb, obj, stl, fbx, usdz3D 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.

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.

输出

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

Hitem3D 2.0 API:常见问题

Hitem3D 2.0 API 收费多少?

在 EmpirioLabs,Hitem3D 2.0 按量计费:1536 textured $2.80 per request; 1536 Pro textured $3.60 per request; 1536 white model $1.60 per request。本页的实时价格表始终与 API 的实际计费一致。

Hitem3D 2.0 使用哪个端点?

Hitem3D 2.0 通过 api.empiriolabs.ai 上的 POST /v1/3d/generations 提供,使用标准的 Bearer 令牌认证。

集成之前可以在浏览器里试用 Hitem3D 2.0 吗?

可以。EmpirioLabs Playground在浏览器中以与 API 相同的参数运行 Hitem3D 2.0,你可以在写代码之前先测试提示词。

如何获取 Hitem3D 2.0 API 密钥?

创建 EmpirioLabs 账户,然后在控制台的 API Keys生成密钥。计费使用按量付费的额度,只为实际发出的请求付费。

准备好使用更好的终端了吗?

查看我们的定价,或者如果你想将自己的模型部署到我们的堆栈中,请联系我们。