Embedding Markets#
Seesaw exposes a read-only iframe widget for public market pages. It is sized for compact sidebars and articles and does not include wallet connection, orders, authentication, or trading messages.
Iframe#
Use the market address or market id in the embed URL:
html
<iframe
src="https://seesaw.markets/embed/MARKET_ID"
title="Seesaw market"
width="400"
height="120"
loading="lazy"
></iframe>
The widget follows the visitor's prefers-color-scheme setting and links out
to the full Seesaw market page for trading.
Static wrapper#
If your CMS prefers a script tag, keep the wrapper static and let it write the same iframe:
html
<div id="seesaw-market-widget"></div>
<script>
document.getElementById('seesaw-market-widget').innerHTML =
'<iframe src="https://seesaw.markets/embed/MARKET_ID" title="Seesaw market" width="400" height="120" loading="lazy"></iframe>';
</script>
Do not pass wallet addresses, referral overrides, or trade instructions to the embed. It is display-only.