Embed a model
Share a project from the editor and you get a viewer link. That link is an iframe source — drop it in a page and the client can orbit, step through levels, and walk the model. The link is the whole identity: revoke it and the embed stops resolving.
The iframe
<iframe src="https://app.openbeam.work/v/YOUR_TOKEN" width="960" height="540" style="border:0" allowfullscreen ></iframe>
Responsive
Wrap it in an aspect-ratio box so it keeps its shape on a phone.
<div style="aspect-ratio:16/9;width:100%">
<iframe
src="https://app.openbeam.work/v/YOUR_TOKEN"
style="width:100%;height:100%;border:0"
allowfullscreen
></iframe>
</div>Chrome
Two URL parameters trim the interface. Truthy values are 1, true and yes; anything else leaves the chrome alone. Camera controls keep working either way — these hide furniture, not interaction.
?hideHeader=1
Drops the project card in the top-left.
?hideBottomBar=1
Drops the bottom control cluster: levels, walls, walkthrough, view toggles.
What it does not do yet
- — iframe only. There is no oEmbed endpoint.
- — No JavaScript API and no postMessage channel: the page cannot drive the camera.
- — No per-embed theming beyond the two parameters above.
- — The openbeam mark in the corner stays. Removing it is an account setting, not a URL flag.