ZeqCNC
CNC toolpath optimization with Zeqond-quantized feed rates. Chatter detection via R(t) vibration analysis, adaptive feed control, tool wear prediction.
| Endpoint | POST /api/mfg/cnc |
| Auth | api-key |
| Rate limit | 15/min |
| Category | manufacturing |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
gcode | string | Yes | G-code program or reference. |
material | string | No | 'aluminum', 'steel', 'titanium', 'composite'. |
toolDiameter_mm | number | No | Cutting tool diameter. |
Returns
{ optimizedGcode, feedRate_mm_min, chatterRisk, toolLife_min, surfaceFinish_Ra, zeqond }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"gcode": "<gcode>",
"material": "<material>",
"toolDiameter_mm": 10
}' \
"https://zeqsdk.com/api/mfg/cnc"
This protocol is a named building block — one of the operations you
compose inside a state contract. Call it directly with
the request above, or invoke it from a contract that fires on your machine's
clock. Browse the whole library at GET /api/protocols; fetch this one at
GET /api/protocols/zeq-cnc.