The Interface API

A new frontend.
For the systems
you already run.

Connect your systems. Expose their actions.

create-interface.ts
1const app = await rotundra.connect({
2  source: "erp",
3  resources: ["customers", "orders"],
4  permissions: "inherit"
5});
6
7await app.actions.run("orders.create", {
8  customer: "acme",
9  items: cart.items
10});
200 OK orders.create 142 ms
Orders Acme Electric Created View order

01/Connect

Keep your core systems.

Securely connect to the systems you already run.

02/Build

Design your own interface.

Expose real actions and data through a clean, flexible API.

03/Execute

Turn intent into action.

Power modern frontends with your business logic.