Collada was the open interchange standard. glTF is the one that stuck.
DAE (Collada) was designed by Khronos as a vendor-neutral interchange format, and it succeeded — you still find it in SketchUp exports, Google Earth models, older asset libraries and architectural tooling. But it is verbose XML, models balloon to many megabytes, and browser support never really arrived. Khronos' own answer was glTF, and GLB is its single-file binary form.
curl -X POST "https://apimycad.com/v1/mesh?to=glb" \
-H "X-API-Key: YOUR_KEY" \
-F "file=@model.dae" \
-o model.glb
<model-viewer> and
AR viewers load GLB natively; Collada needs an extra loader, where it is supported at all.Mesh geometry, the scene node hierarchy and material assignments convert. Collada's more exotic corners — physics scenes, custom profiles, engine-specific extras — have no glTF equivalent and are not preserved. For static models, which is the overwhelming majority of DAE files in the wild, the result is a faithful, much lighter model.
Conversion runs one job at a time and returns the finished file in the response; there is no queue to poll. Uploads up to 50 MB.