Skip to main content
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"
}
Poll this endpoint to check the status of your 3D model generation task.

Path Parameters

id
string
required
The 3D generation task ID.

Response

id
string
Task ID.
status
string
Task status: pending, processing, completed, or failed.
progress
integer
Progress percentage (0-100).
model_url
string
URL to download the 3D model file (when completed).
glb_url
string
URL to download the GLB format model (when available).
fbx_url
string
URL to download the FBX format model (when available).
error
string
Error message (when failed).
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"
}