# API Documentation

Simplio3D has an API library ready to unlock integration with third-party systems such as ERPs, CRMs and other web services and to increase the degree of customization in terms of implementing a product configurator using the Simplio3D foundation.

The platform offers REST API access at 2 levels:

* **Starter subscriptions:** [Partner API ](/api-reference/partner-api.md)
* **Pro and Enterprise subscriptions:**  [Open API](/api-reference/open-api.md)
* **Enterprise subscription:** [Web SDK](/api-reference/api-sdk.md) & Dashboard API

**Pro subscription: Partner REST API**

If you are a Pro user, you have access to the Partner API and in your user account profile you can generate a token to execute and generate a JSON response.\
The Partner API only handles the execution of **order data** coming from the 3D configurators. Here is an example of a JSON result below:

```
      {
          "id": 22,
          "price": 250,
          "status": "new",
          "customer_details": {
            "Phone": "000",
            "Last Name": "John",
            "First Name": "Smith",
            "Email address": "john@smith.smith",
            "GDPR/DSA": "yes"
          },
          "configurator_summary": {
            "Width": "60inches",
            "Colors": "Vintage Brown Wood",
            "Height": "60inches",
            "Profile Depth": "4inches",
            "Opening System": "Tilt & turn (left)",
            "Type of Window": "Tilt & Turn",
            "Upright Fanlight": "No upper fanlight"
          },
          "invoice_url": 1,
          "order_shopify": {
            "id": 3,
            "shopify_draft_order_id": "000",
            "order_id": 22,
            "currency": "INR",
            "invoice_url": "[link]invoices/f1c6f192caa9e1570dc7be672437d3ec",
            "return_url": "[link]configurator",
            "total_price": 250,
            "subtotal_price": 250,
            "total_tax": 20.64,
            "status": "open",
            "created_at": "2025-01-21T15:15:22.000000Z",
            "updated_at": "2025-01-21T15:15:22.000000Z"
          },
          "created_at": "2025-01-21 15:15:21",
          "updated_at": "2025-01-21 15:15:21"
        },
```

[Explore the Partner API documentation.](/api-reference/partner-api.md)

**Enterprise subscription:** **Open API**

Enterprise allows access to the Open API. This is for more advanced customization solutions, useful for IT development teams that want to implement more complex configurators based on the Simplio3D foundation.

[Explore the Open API documentation.](/api-reference/open-api.md)

For more information you can contact us anytime [here](https://www.simplio3d.com/contact-us/).

<figure><img src="/files/75NHkKkWGNjE38rN8SVa" alt=""><figcaption><p>Embedded versus Open API</p></figcaption></figure>


---

# Agent Instructions: 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:

```
GET https://docs.simplio3d.com/integrations/api-documentation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
