*** title: runtime.live description: Mint a live embed for the browser runtime. ------------------------------------------------------- `runtime.live` is a browser runtime capability in the `runtime` namespace. ## Availability * Runtime: `browser` * Kind: `lifecycle` * Category: `lifecycle` * Supported drivers: Playwright, Puppeteer, Stagehand, browser-use ## SDK Surface * SDK path: `runtime.live` * Async: Yes ## HTTP Surface * Transport: resource route * Route: `POST /workspaces/{id}/runtimes/{alias}/embed/live` * Long-running: No ## Arguments | Argument | Type | Required | Description | | --------- | -------- | -------- | ----------------------------------------- | | `options` | `object` | No | Live embed options such as interactivity. | ## Result * Type: `embed` * Description: Live embed metadata including iframe URL and token expiry. ## SDK Example ```ts await runtime.live(); ``` ## HTTP Example ```http POST /workspaces/{id}/runtimes/{alias}/embed/live ``` ## Related Capabilities * [`runtime.recording`](../lifecycle/runtime-recording) * [`runtime.stop`](../lifecycle/runtime-stop)