Once your build is approved, the project gets a share link. Use it directly to send the stream to people, or wrap it in an iframe to drop the experience into your own site.Documentation Index
Fetch the complete documentation index at: https://docs.streampixel.io/llms.txt
Use this file to discover all available pages before exploring further.
Option 1: Share the link
The fastest way. Send the share link in an email, chat, or button on your site. Anyone who opens it loads the stream in their browser.Each project has exactly one share link. Use the dashboard’s Security settings to gate access (passwords, domain whitelisting). See security control.
Option 2: Embed in an iframe
Drop the stream into your own page with a single iframe element:Recommended allow attributes
| Permission | Why |
|---|---|
autoplay | Let the stream start without a user click |
fullscreen | Enable the fullscreen control |
microphone | Required if you use voice chat |
camera | Required if you use video chat |
xr-spatial-tracking | Required for WebXR / VR sessions |
Option 3: Custom frontend with the Web SDK
If you want full control — custom UI, programmatic events, voice chat hooks — use the Web SDK instead of an iframe.Web SDK overview
Build a custom player with full control over events and UI.
Iframe integration
Iframe-specific guides: postMessage, stream states, control commands.
Embedding tips
Make the iframe responsive
Make the iframe responsive
Wrap the iframe in a 16:9 container and set the iframe to fill it:
Restrict embedding to your domain
Restrict embedding to your domain
In the project’s security settings, whitelist the domains that are allowed to embed your stream. Browsers will refuse to load the iframe on other origins.
Talk to the stream from your page
Talk to the stream from your page
Use postMessage to send commands and listen for events from the iframe.
Custom domain instead of streampixel.io
Custom domain instead of streampixel.io
Add a custom domain to serve the stream from your own URL.
Next steps
Iframe deep dive
postMessage, lifecycle events, control commands.
Custom domains
Serve your stream from
play.yourcompany.com.Security settings
Gate access with passwords or domain whitelisting.
React + HTML samples
Drop-in code for vanilla HTML and React projects.