> For the complete documentation index, see [llms.txt](https://agpt.co/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://agpt.co/docs/integrations/block-integrations/slicing.md).

# Slant3D Slicing

Blocks for slicing 3D models and getting pricing information from Slant3D.

## Slant3D Slicer

### What it is

Get a live 3D printing quote for physical parts from STL URLs or attached workspace files. Use this to price printable parts and complete project part sets before ordering from Slant3D, which manufactures and ships the parts. Binary STL URLs are accepted directly; no browser upload is needed. For complete projects, first read the assembly bill of materials: include repeated parts across subassemblies, select a design variant for alternative parts while keeping the required number of copies, and exclude reference assembly meshes. One copy of each STL is not necessarily a complete set. Quote each required file with its full assembly quantity and sum the returned prices, which already include quantity. Before reporting a complete quote, reconcile all quoted files and quantities against the parts list. Printing-only quotes need no shipping address or payment method. Returns a reusable file\_id for ordering; this block does not place or charge an order.

### How it works

This block loads an STL URL, workspace attachment, or data URI through the shared media loader, streams it through Slant3D's signed upload flow, confirms the upload, and requests a printing estimate. Supply `file_id` to reuse an upload. Set `platform_id`, or omit it only when the account has exactly one enabled platform.

The USD price includes the requested positive `quantity` and excludes shipping. A `filament_id` selects a material; omitting it uses default black PLA. Missing file inputs, inaccessible files, invalid quantities, ambiguous platforms, and provider failures surface as errors. A missing total or a response priced for a different quantity is rejected before any output. Reuse the returned `file_id` when preparing an order.

### Inputs

| Input        | Description                                                             | Type       | Required |
| ------------ | ----------------------------------------------------------------------- | ---------- | -------- |
| file\_url    | STL file URL, workspace file, or data URI; ignored when file\_id is set | str (file) | No       |
| file\_id     | Previously uploaded Slant3D public file service ID                      | str        | No       |
| platform\_id | Platform ID for uploads; may be omitted with one enabled platform       | str        | No       |
| filament\_id | Filament public ID; defaults to Slant3D's PLA Black                     | str        | No       |
| quantity     | Number of prints to estimate                                            | int        | No       |

### Outputs

| Output   | Description                                                | Type  |
| -------- | ---------------------------------------------------------- | ----- |
| error    | Error message if the operation failed                      | str   |
| message  | Response message                                           | str   |
| price    | Estimated printing price for the requested quantity in USD | float |
| file\_id | Slant3D public file service ID for order items             | str   |

### Possible use case

**Price Quoting**: Get instant price quotes for 3D models uploaded by customers.

**Model Validation**: Verify that STL files are printable before accepting orders.

**Cost Estimation**: Calculate printing costs as part of an automated quoting system.

***


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://agpt.co/docs/integrations/block-integrations/slicing.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
