For: developers. Time to complete: under 30 minutes.
Show Atlas results on your website
1. Tell Atlas your domains
The surface only renders inside domains Atlas has allowed for you. Send your domains to your Atlas contact; the allow-list is per partner.
2. Embed
<iframe
src="https://<partner>.atlasbiolabs.com/embed?lang=en"
title="Your results"
style="width: 100%; min-height: 720px; border: 0;"
allow="clipboard-write"
></iframe>
3. Listen for events (optional)
<script>
window.addEventListener("message", (e) => {
if (e.origin !== "https://<partner>.atlasbiolabs.com") return;
const { event, order_ref } = e.data || {};
if (event === "results_ready") {
// update your UI
}
});
</script>
Always check e.origin.
4. Sizing
The surface is responsive from 360 px upwards. It reports its content height in every event as height so you can resize the iframe if you prefer no inner scrolling.