Generate a 3D Model
CallPOST /v1/models:generate with a prompt. Add name only when you want a specific title shown in Mint; Mint derives one when it is omitted. generationMode defaults to auto, and generationPreset defaults to standard. See Presets for the speed, quality, and cost tradeoffs.
imageUrl or 2–8 sourceImages for visual guidance, never both. riggingPose can be t_pose or a_pose; it prepares a full-body, front-facing, empty-handed humanoid Preview for later rigging but does not rig or animate it.
Review and revise a Preview
The Preview is a fast visual proposal, not the final 3D Model. The recommendedauto mode continues automatically; set generationMode: "review" only when your integration needs to inspect the Preview. Poll the operation until preview_ready, then:
- Approve with
POST /v1/models/{modelId}:approve. Send no request body. - Revise with
POST /v1/models/{modelId}:reviseandfeedback. You can also setname,revisionEditStrength,generationMode, orriggingPose.
generationMode: "review" on a revision when you want another decision point. Omit it to continue automatically after the revised Preview.
Retrieve the 3D Model and its files
When the operation succeeds, readoperation.resource.id, then call GET /v1/models/{modelId}. The response includes available GLB, optimized GLB, preview, thumbnail, and converted-format URLs.
For a complete file inventory, use GET /v1/assets/model/{modelId}/artifact-manifest. Do not construct provider URLs.
Retry a failed generation
UsePOST /v1/models/{modelId}:retry for a terminal failed generation. The optional body can replace prompt, name, generationMode, or generationPreset.
Optimize
UsePOST /v1/models/{modelId}:optimize with optimizationLevel set to light, moderate, or aggressive. Optimization updates the model’s optimized file rather than creating another 3D Model. Repeating the same level while it is active returns 409 model-optimization-in-progress; repeating it after completion returns 409 model-already-optimized. Neither conflict starts new work or creates another charge. The original glbUrl remains available; the optimized file appears as assets.optimizedGlbUrl.
Smart topology
UsePOST /v1/models/{modelId}:retopologize to create a topology-focused derivative. Set faceLevel to low, medium, or high, and optionally use name for the title shown in Mint. Each accepted request can create a new derivative; use a stable Idempotency-Key when retrying an uncertain request.
Convert
UsePOST /v1/models/{modelId}:convert. The model ID in the URL must belong to your Mint account. External source URLs are not accepted.
operation.conversion.assets for the requested glb, obj, stl, usdz, or fbx output.