v1

latestOpenAPI 3.1.0Proprietary2026-07-173298155.5 KB
Sheet Metal

Sheet metal - unfold all solids to flat geometry

Proprietary sheet-metal unfold: loads every solid in an uploaded STEP file and flattens each to a flat pattern. Requires the 'cad' API key scope. Returns 202 with a task ID; all flats are combined into one compound output per format.

post/api/v1/cad/pro/unfold/solid-to-flat

Request body

stepFileIdstring required

ID of the previously uploaded STEP file (returned by the file upload endpoint). Both plain STEP (.step/.stp) and gzip-compressed STEP (.stpz) uploads are accepted - compression is detected automatically.

kFactornumber

Sheet-metal K-factor (neutral-axis position), typically ~0.5.

thicknessOverridenumber

Sheet thickness override in model units; 0 auto-detects thickness from face pairs.

Example request

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

Response

Task accepted

oktrue required

Example response

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