Models
Models - execute a parametric model
Generic endpoint - works for any registered model. See model-specific endpoints for fully typed parameters. Always returns 202 with a task ID for polling.
post/api/v1/models/{modelName}
Path parameters
modelNamestring required
Model slug (e.g. dragon-cup, phone-nest)
Request body
Example request
{
"outputs": {
"meshPrecision": 0.1,
"gltfMeshPrecision": 0.1
}
}Response
Task accepted
Example response
{
"data": {
"statusUrl": "/api/v1/tasks/{taskId}"
}
}