API → ML → List text-to-CAD models you've generated
Parameters
Name
Type
Req.
Possible values
created_at_ascending
: Sort in increasing order of "created_at".created_at_descending
: Sort in decreasing order of "created_at".
Returns
- 200 OK
successful operation
Name
Type
Req.
body
objectoptionalObject Properties
items
arrayoptionalArray of
Possible values
thumbs_up
: Thumbs up.thumbs_down
: Thumbs down.accepted
: Accepted.rejected
: Rejected.
Possible values
cad
: CAD.kcl
: KCL.kcl_iteration
: KCL iteration.
Possible values
fbx
: Autodesk Filmbox (FBX) format. <https://en.wikipedia.org/wiki/FBX>glb
: Binary glTF 2.0. This is a single binary with .glb extension. This is better if you want a compressed format as opposed to the human readable glTF that lacks compression.gltf
: glTF 2.0. Embedded glTF 2.0 (pretty printed). Single JSON file with .gltf extension binary data encoded as base64 data URIs. The JSON contents are pretty printed. It is human readable, single file, and you can view the diff easily in a git commit.obj
: The OBJ file format. <https://en.wikipedia.org/wiki/Wavefront_.obj_file> It may or may not have an an attached material (mtl // mtllib) within the file, but we interact with it as if it does not.ply
: The PLY file format. <https://en.wikipedia.org/wiki/PLY_(file_format)>step
: The STEP file format. <https://en.wikipedia.org/wiki/ISO_10303-21>stl
: The STL file format. <https://en.wikipedia.org/wiki/STL_(file_format)>
Possible values
queued
: The async API call is queued.uploaded
: The async API call was uploaded to be converted.in_progress
: The async API call is in progress.completed
: The async API call has completed.failed
: The async API call has failed.
get
/user/text-to-cad$ curl "https://api.zoo.dev/user/text-to-cad" \
--header "Authorization: Bearer $TOKEN"
200 OK
Response{
"items": [
{
"code": "HLO6Aklo0eMihB1w1Ys4",
"completed_at": "2024-11-20T19:29:40.731Z",
"created_at": "2024-11-20T19:29:40.731Z",
"error": "Icb6PUYE219LpV0LJ9YTBovnieJn",
"feedback": "thumbs_up",
"id": "8caca864-4d54-40aa-a2d3-74a27cbbf579",
"model": "cad",
"model_version": "q0IOq",
"output_format": "obj",
"outputs": {},
"prompt": "zgwXMRtKe4W7IFzsQXfDq5",
"started_at": "2024-11-20T19:29:40.731Z",
"status": "queued",
"updated_at": "2024-11-20T19:29:40.731Z",
"user_id": "b67014ea-6776-489f-8b51-bf0773b46699"
}
],
"next_page": "BR5gdNM"
}