企业级性能
保证最高速率限制、并发能力和任务优先级,提供 99.9% 正常运行时间 SLA。
面向多样化使用场景并持续优化,我们的 API 提供流畅无缝的体验。
以卓越速度大规模生成、贴图并优化 3D 资产。
curl --fail-with-body \ --request POST 'https://api.hyper3d.com/api/v2/rodin' \ --header "Authorization: Bearer ${RODIN_API_KEY}" \ --form 'prompt=A small wooden treasure chest with brass trim' \ --form 'tier=Gen-2.5-Medium' \ --form 'mesh_mode=Raw' \ --form 'quality=medium' \ --form 'geometry_file_format=glb' \ --form 'material=PBR'
import os import requests response = requests.post( "https://api.hyper3d.com/api/v2/rodin", headers ={"Authorization": f"Bearer {os.environ['RODIN_API_KEY']}"}, data={ "prompt": "A small wooden treasure chest with brass trim", "tier": "Gen-2.5-Medium", "mesh_mode": "Raw", "quality": "medium", "geometry_file_format": "glb", "material": "PBR", }, timeout=60, ) response .raise_for_status() print (response.json())
{ "message" : "Submitted.", "uuid" : "<task_uuid>", "jobs" : { "uuids" : ["<job_uuid>"], "subscription_key" : "<subscription_key>" }, "consumed" : 0.5 }
curl --fail-with-body \ --request POST 'https://api.hyper3d.com/api/v2/rodin' \ --header "Authorization: Bearer ${RODIN_API_KEY}" \ --form 'images=@./input.png' \ --form 'prompt=Preserve the silhouette and produce symmetric geometry' \ --form 'tier=Gen-2.5-Medium' \ --form 'mesh_mode=Raw' \ --form 'quality=medium' \ --form 'geometry_file_format=glb' \ --form 'material=PBR'
import os import requests with open("input.png", "rb") as image: response = requests.post( "https://api.hyper3d.com/api/v2/rodin", headers ={"Authorization": f"Bearer {os.environ['RODIN_API_KEY']}"}, files ={"images": image}, data={ "prompt": "Preserve the silhouette and produce symmetric geometry", "tier": "Gen-2.5-Medium", "mesh_mode": "Raw", "quality": "medium", "geometry_file_format": "glb", "material": "PBR", }, timeout=60, ) response .raise_for_status() print (response.json())
{ "message" : "Submitted.", "uuid" : "<task_uuid>", "jobs" : { "uuids" : ["<job_uuid>"], "subscription_key" : "<subscription_key>" }, "consumed" : 0.5, "prompt" : "Preserve the silhouette and produce symmetric geometry" }
curl --fail-with-body \ --request POST 'https://api.hyper3d.com/api/v2/rodin_texture_only' \ --header "Authorization: Bearer ${RODIN_API_KEY}" \ --form 'image=@./reference.png' \ --form 'model=@./model.glb' \ --form 'prompt=Weathered bronze with subtle green patina' \ --form 'material=PBR' \ --form 'resolution=High'
import os import requests with open("reference.png", "rb") as image, open("model.glb", "rb") as model: response = requests.post( "https://api.hyper3d.com/api/v2/rodin_texture_only", headers ={"Authorization": f"Bearer {os.environ['RODIN_API_KEY']}"}, files ={"image": image, "model": model}, data={ "prompt": "Weathered bronze with subtle green patina", "material": "PBR", "resolution": "High", }, timeout=60, ) response .raise_for_status() print (response.json())
{ "message" : "Submitted.", "uuid" : "<task_uuid>", "jobs" : { "uuids" : ["<job_uuid>"], "subscription_key" : "<subscription_key>" }, "consumed" : 0.5 }
比较不同 Hyper3D API 等级的速率限制、并发能力和访问权限。
| 能力 | 创作者版 | 商业版 | 企业版 热门 |
|---|---|---|---|
| API 访问 | 已包含 | 定制 | |
| API 身份验证 | API 密钥 / Bearer 令牌 | API 密钥 / 定制配置 | |
| 支持的 API | Rodin Generation、Gen-2、Gen-2.5、BANG!、Texture Generation、Status、Download、Balance | Business API + 定制启用 | |
| 生成模式 | 图像转 3D、文本转 3D、多图生成 | 同上,另含合同约定的定制服务 | |
| 可用模型等级 | Sketch、Regular、Detail、Smooth、Gen-2、Gen-2.5 等级 | 同上,另含合同约定的访问权限 | |
| 积分成本 | 每次生成最低 0.5 积分;HighPack +1 积分;Gen-2.5 Extreme-High 1 积分 | 定制条款 | |
| 状态查询 / 下载 / 余额 API | 无需额外积分 | 无需额外积分 / 定制条款 | |
| 数据保留 | 7 天 | 默认 7 天,可按协议定制 | |
| API 密钥管理 | 创建、管理和撤销 API 密钥 | 专属接入指导 / 定制配置 | |
| 速率限制 | 未公开说明 | 按协议定制 | |
| 支持 / SLA | 标准支持 | 合同约定的支持 / SLA | |
| 自定义端点 | 按协议定制 | ||
| 安全 / 合规条款 | 标准政策 | 合同约定的安全审查 / 条款 |
将 Hyper3D 强大的基础模型无缝集成到您的产品中。获取 API 密钥,免费开始构建。
按使用量定价。所有费用以积分计算。您只需为实际使用量付费。
您的格式。您的行业。随时可导出。
为正在评估 3D 模型生成 API、文本转 3D API、图像转 3D API 及资产自动化工作流的团队提供解答。
将提示词、图像和创意工作流转化为可扩展的 3D 生成任务,服务于您的产品、平台或制作团队。