> ## Documentation Index
> Fetch the complete documentation index at: https://lava.so/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Minicor

> Managed desktop automation platform for creating and running workflow configurations that control browser and desktop applications.

Managed desktop automation platform for creating and running workflow configurations that control browser and desktop applications. Best for RPA-style workflows needing GUI automation -- filling forms, navigating web apps, and running multi-step desktop processes. Unlike code-execution sandboxes (RunTM, Indexable), Minicor automates existing desktop and browser interfaces.

2 endpoints available through Lava's AI Gateway. See the [Minicor API docs](https://docs.laminar.run) for full documentation.

<Warning>This provider requires your own credentials — connect your API key or OAuth account before use.</Warning>

## Endpoints

### Execute a workflow by configuration ID

**POST** `https://api.laminar.run/workflow/execute/external/cfg_abc123` — Free / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.laminar.run/workflow/execute/external/cfg_abc123', { body: {"name":"Support runbook","steps":[]} });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl -X POST "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.laminar.run%2Fworkflow%2Fexecute%2Fexternal%2Fcfg_abc123" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY" \
      -H "Content-Type: application/json" \
      -d '{"name":"Support runbook","steps":[]}'
    ```
  </Tab>
</Tabs>

### Create an external configuration

**POST** `https://api.laminar.run/configurations/external` — Free / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.laminar.run/configurations/external', { body: {"name":"Support runbook","steps":[]} });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl -X POST "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.laminar.run%2Fconfigurations%2Fexternal" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY" \
      -H "Content-Type: application/json" \
      -d '{"name":"Support runbook","steps":[]}'
    ```
  </Tab>
</Tabs>

## Next Steps

<CardGroup cols={2}>
  <Card title="All Providers" icon="grid" href="/gateway/supported-providers">
    Browse all supported AI providers
  </Card>

  <Card title="Forward Proxy" icon="route" href="/gateway/forward-proxy">
    Learn how to construct proxy URLs and authenticate requests
  </Card>
</CardGroup>
