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"
}| Method | Endpoint | Description | Status |
|---|---|---|---|
| POST | /api/generate | Create a generation job | Live |
| GET | /api/generate | Endpoint schema & usage | Live |
| GET | /api/features | Capability + status registry | Live |
| GET | /api/generate/:id | Poll job status | Soon |
| POST | /api/webhooks | Register completion webhooks | Soon |