Cloud Slicer API
​string · required ​number​number​number ​string · required​string · required​boolean · required
Operations related to 3D model information, including printability checks. Requires Cloud Slicer Token
Check Model Printability
POST
https://api.cloudslicer3d.com
/v1/printability/{file_id}
Bearer
Check if a model fits on the print bed given the dimensions.
Requires a valid API token in the Authorization header (Bearer scheme). You can gernerate a token from the Cloud Slicer website in your account settings. Accepts the file ID and printer bed dimensions (mm) as query parameters. Returns printability status and model/printer dimensions.
path Parameters
file_idID for the 3D model file (this can be found in the upload response)
ID for the 3D model file (this can be found in the upload response)
Check Model Printability › Request Body
**Schema for printer bed dimensions:**
x (float): The X (width) dimension of the printer bed in millimeters. Default is 210mm.
y (float): The Y (depth) dimension of the printer bed in millimeters. Default is 210mm.
z (float): The Z (height) dimension of the printer bed in millimeters. Default is 250mm.
xDefault: 210
yDefault: 210
zDefault: 250
Check Model Printability › Responses
Successfully analyzed model printability
**Response schema:**
user_id (str): The unique identifier of the user associated with the response.
file_path (str): The file path to the 3D model file in cloud storage.
fits_printer (bool): Whether the model fits within the printer's build volume.
model_dimensions (dict): Dimensions of the model in mm (x, y, z).
printer_dimensions (dict): Dimensions of the printer's build volume in mm (x, y, z).
user_idfile_pathfits_printer​XYZDimensions · required
Schema for XYZ dimensions:
Code
​XYZDimensions · required
Schema for XYZ dimensions:
Code