Hyper3D Gen2 एपीआई

Rodin Gen-2 engine that turns a text prompt or up to five reference images into production 3D assets with PBR materials and quad or raw meshes.

Deemos3D जनरेशनरिलीज 1 अक्टू॰ 2025Malaysiaस्वामित्व वाला एंडपॉइंट

Hyper3D Gen2 के बारे में

Rodin Gen-2 engine that turns a text prompt or up to five reference images into production 3D assets with PBR materials and quad or raw meshes.

इस नाम से भी जाना जाता है Deemos Hyper3D Gen2

image to 3dtext to 3dpbr materialsquad meshseed control

Hyper3D Gen2 की विशेषताएं

मॉडल ID
hyper3d-gen2
प्रदाता
Deemos
श्रेणी
3D जनरेशन
रिलीज
1 अक्टू॰ 2025
इनपुट
टेक्स्टइमेज
आउटपुट
3D
रीजन
Malaysia
एंडपॉइंट
POST/v1/3d/generations
वैकल्पिक मॉडल ID
deemos/hyper3d-gen2hyper3d-gen2-260112rodin-gen2

Hyper3D Gen2 API की कीमतें

EmpirioLabs कैटलॉग से लाइव pay-as-you-go दरें। आप सिर्फ उतना ही भुगतान करते हैं जितना उपयोग करते हैं, कोई मासिक न्यूनतम नहीं।

प्रकार
स्पेक
दर
Per generation
per request
$0.80
पूरे कीमत पेज पर तुलना करें

Hyper3D Gen2 API को कैसे कॉल करें

Hyper3D Gen2 POST /v1/3d/generations से चलता है। request तुरंत job_id देती है; job पूरा होने तक GET /v1/jobs/{job_id} को poll करें और परिणाम से आउटपुट URLs पढ़ें। EmpirioLabs डैशबोर्ड से API key प्राप्त करें।

cURL: job सबमिट करें
curl https://api.empiriolabs.ai/v1/3d/generations \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "hyper3d-gen2",
    "prompt": "Describe what you want Hyper3D Gen2 to generate."
  }'
cURL: परिणाम के लिए poll करें
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": "hyper3d-gen2",
        "prompt": "Describe what you want Hyper3D Gen2 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)
Hyper3D Gen2 API का पूरा संदर्भ

Hyper3D Gen2 API के पैरामीटर

EmpirioLabs पर Hyper3D Gen2 API द्वारा समर्थित request पैरामीटर। फ़ील्ड छोड़ने पर डिफ़ॉल्ट मान लागू होते हैं।

पैरामीटरप्रकारडिफॉल्टरेंज / मानविवरण
promptstring--Text description of the object, in English, up to 400 characters. Optional when input images are provided.
imagearray--Up to five input images of the object. Multiple images act as multi-view references.
materialenumPBRPBR, Shaded, All, NoneTexture output: PBR maps, Shaded baked lighting, All for both, or None for an untextured white mesh.
mesh_modeenumQuadQuad, RawQuad outputs a quad mesh; Raw outputs a triangle mesh with higher face-count ceilings.
subdivision_levelenum-high, medium, lowPreset face-count level for the chosen mesh mode. Ignored when quality_override is set.
quality_overrideinteger-500 से 1000000Custom face count. Raw meshes accept 500 to 1,000,000; Quad meshes 1,000 to 200,000.
hd_texturebooleanfalse-Generate HD textures.
high_packbooleanfalse-Upgrade texture maps to 4K (2K without it).
use_original_alphabooleanfalse-Preserve transparent regions of the input image.
ta_posebooleanfalse-Force humanoid subjects into a standard T or A binding pose.
seedinteger-0 से 65535Seed in [0, 65535]. Same seed gives similar, not identical, results.

जानने योग्य

Generates one 3D asset per request from a text prompt (English, up to 400 characters), one to five reference images, or both. Billing is a flat rate per generated model.

Controls

  • Materials: PBR, Shaded, both, or an untextured white mesh.
  • Quad or raw triangle meshes with preset subdivision levels or an exact face count (up to 1,000,000 raw or 200,000 quad).
  • glb, obj, usdz, fbx, or stl output, optional HD and 4K textures, transparent-alpha preservation, T/A pose for humanoids, and a seed control.

Input limits

  • Images: jpg, jpeg, or png, under 4096x4096 px and 30 MB each.

आउटपुट

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

Hyper3D Gen2 API: आम सवाल

Hyper3D Gen2 API की कीमत कितनी है?

EmpirioLabs पर Hyper3D Gen2 का बिल उपयोग के अनुसार बनता है: Per generation $0.80 per request। इस पेज की लाइव दर तालिका हमेशा API की वास्तविक बिलिंग से मेल खाती है।

Hyper3D Gen2 कौन सा endpoint उपयोग करता है?

Hyper3D Gen2 api.empiriolabs.ai पर POST /v1/3d/generations के ज़रिए मिलता है, मानक Bearer टोकन प्रमाणीकरण के साथ।

क्या मैं इंटीग्रेट करने से पहले ब्राउज़र में Hyper3D Gen2 आज़मा सकता हूं?

हां। EmpirioLabs playground ब्राउज़र में Hyper3D Gen2 को उन्हीं पैरामीटरों के साथ चलाता है जो API देता है, ताकि आप कोड लिखने से पहले prompt आज़मा सकें।

Hyper3D Gen2 की API key कैसे मिलेगी?

EmpirioLabs खाता बनाएं, फिर डैशबोर्ड में API Keys में key जनरेट करें। बिलिंग pay-as-you-go क्रेडिट से होती है, इसलिए आप सिर्फ अपनी requests का भुगतान करते हैं।

बेहतर समापन बिंदुओं का उपयोग करने के लिए तैयार हैं?

हमारे मूल्य निर्धारण की जाँच करें या यदि आप चाहते हैं कि आपका अपना मॉडल हमारे स्टैक पर तैनात किया जाए, तो पहुंचें।