CADLens is a hosted REST API. You upload a CAD file — DWG, DXF, or DWF — and get back a clean, machine-readable description of the drawing: every entity with its coordinates and layer, the layer list, drawing metadata, and a rendered PNG preview. No CAD software to install, no conversion infrastructure to run.
Most tools that touch CAD files stop at rendering an image. CADLens goes further: it extracts the underlying vector geometry as JSON so your code can read, measure, and transform the drawing.
For every parsed file you receive:
The API is asynchronous by default, so large files never block your request:
POST /v1/parse with your file — you get a job_id back immediately.GET /v1/jobs/{job_id} or register a webhook URL to be notified on completion./v1/jobs/{job_id}/result and the preview from /v1/jobs/{job_id}/image.Files under ~2 MB can pass wait=true for a synchronous response. Authentication is an API key in the Authorization: Bearer header.
CADLens is intentionally focused. It is not a CAD editor, not a design-collaboration platform, and not a general file converter with a UI. It is a programmatic API that software calls to get CAD data — reliably, at scale, behind a stable versioned schema.
Free tier includes 50 parse requests per month. No credit card required.