Developer APISoon

Generate 3D at scale, from your own stack

A REST API to plug Zephlor into your pipeline. The mock endpoints below are live today; authenticated, production generation is rolling out soon.

Simple REST

One POST to kick off a generation. JSON in, job out.

Webhooks

Get notified the moment a model finishes rendering.

Direct exports

Fetch GLB, FBX, or USDZ straight from the job result.

Request

curl -X POST https://zephlor.com/api/generate \
  -H "Content-Type: application/json" \
  -d '{
    "mode": "text-to-3d",
    "prompt": "a friendly robot companion",
    "style": "realistic",
    "polycount": "high"
  }'

Response

{
  "job": {
    "id": "job_1a2b3c",
    "mode": "text-to-3d",
    "status": "queued",
    "progress": 0,
    "preview": { "archetype": "creature", "tris": "60k tris" }
  },
  "backend": "mock"
}
MethodEndpointDescriptionStatus
POST/api/generateCreate a generation job Live
GET/api/generateEndpoint schema & usage Live
GET/api/featuresCapability + status registry Live
GET/api/generate/:idPoll job statusSoon
POST/api/webhooksRegister completion webhooksSoon