Build with the
Qualica API

Programmatic access to our DFM engine. Integrate manufacturability analysis into your workflow.

RESTful API

Simple HTTP endpoints with JSON responses. Easy to integrate with any stack.

Secure Authentication

API keys with scoped permissions. Rotate keys anytime from your dashboard.

Fast & Reliable

99.9% uptime SLA. Median response time under 2 seconds.

Quick Start Example

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 }
}

Core Endpoints

POST/v1/analyze

Analyze a CAD document for DFM issues

GET/v1/analysis/:id

Retrieve analysis results by ID

GET/v1/documents

List all analyzed documents

POST/v1/webhooks

Register a webhook for analysis updates

GET/v1/processes

List all 60+ supported manufacturing processes

Rate Limits

Free

10 requests/hour

Individual

100 requests/hour

Team/Enterprise

Custom limits

Ready to build?

Full API documentation available after sign-up.

Get API Access