Programmatic access to our DFM engine. Integrate manufacturability analysis into your workflow.
Simple HTTP endpoints with JSON responses. Easy to integrate with any stack.
API keys with scoped permissions. Rotate keys anytime from your dashboard.
99.9% uptime SLA. Median response time under 2 seconds.
curl -X POST https://api.qualica.ai/v1/analyze \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"document_id": "onshape://doc/abc123",
"element_id": "xyz789",
"process": "cnc_milling"
}'
# Response
{
"dfm_score": 72,
"issues": [
{
"severity": "critical",
"type": "wall_thickness",
"message": "Wall thickness 2.3mm below minimum",
"location": { "feature": "Shell 1" },
"suggestion": "Increase to 3mm for CNC milling"
}
],
"recommended_process": "cnc_milling",
"estimated_cost": { "low": 45, "high": 78 }
}/v1/analyzeAnalyze a CAD document for DFM issues
/v1/analysis/:idRetrieve analysis results by ID
/v1/documentsList all analyzed documents
/v1/webhooksRegister a webhook for analysis updates
/v1/processesList all 60+ supported manufacturing processes
10 requests/hour
100 requests/hour
Custom limits