v1

latestOpenAPI 3.1.0Proprietary2026-07-173298155.5 KB
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

paramsobject

Model-specific parameters. Omitted params use their defaults. See model definition for available options.

Example request

{
  "outputs": {
    "meshPrecision": 0.1,
    "gltfMeshPrecision": 0.1
  }
}

Response

Task accepted

oktrue required

Example response

{
  "data": {
    "statusUrl": "/api/v1/tasks/{taskId}"
  }
}