메인 콘텐츠로 건너뛰기
GET
/
v1
/
3d
/
generations
/
{id}
curl "https://api.lemondata.cc/v1/3d/generations/3d_abc123" \
  -H "Authorization: Bearer sk-your-api-key"
{
  "id": "gptproto_v3:abc123",
  "status": "completed",
  "model_url": "https://cdn.tripo3d.ai/abc123.glb",
  "glb_url": "https://cdn.tripo3d.ai/abc123.glb",
  "fbx_url": "https://cdn.tripo3d.ai/abc123.fbx"
}
이 엔드포인트를 폴링하여 3D 모델 생성 작업의 상태를 확인하십시오.

경로 파라미터

id
string
필수
3D 생성 작업 ID입니다.

응답

id
string
작업 ID.
status
string
작업 상태: pending, processing, completed 또는 failed.
progress
integer
진행률 백분율 (0-100).
model_url
string
3D 모델 파일을 다운로드할 URL (완료 시).
glb_url
string
GLB 형식 모델을 다운로드할 URL (사용 가능한 경우).
fbx_url
string
FBX 형식 모델을 다운로드할 URL (사용 가능한 경우).
error
string
에러 메시지 (실패 시).
curl "https://api.lemondata.cc/v1/3d/generations/3d_abc123" \
  -H "Authorization: Bearer sk-your-api-key"
{
  "id": "gptproto_v3:abc123",
  "status": "completed",
  "model_url": "https://cdn.tripo3d.ai/abc123.glb",
  "glb_url": "https://cdn.tripo3d.ai/abc123.glb",
  "fbx_url": "https://cdn.tripo3d.ai/abc123.fbx"
}