Softrouter · Blockwave Labs
다른 홈페이지에 데모 붙이기
script 한 줄 또는 iframe으로 견적 데모를 임베드하세요.
1. Script loader (권장)
<div id="softrouter-demo"></div>
<script
src="https://stablecoin-smart-router-production.up.railway.app/embed/widget.js"
data-target="softrouter-demo"
data-api-base="https://stablecoin-smart-router-production.up.railway.app"
data-height="520"
data-theme="dark"
></script>
2. iframe 직접
<iframe
src="/embed/demo.html?apiBase=https://YOUR_HOST&theme=dark"
width="100%" height="520"
style="border:none;border-radius:12px"
></iframe>
3. postMessage (부모 페이지)
window.addEventListener('message', (ev) => {
if (ev.data?.source !== 'softrouter-embed') return;
console.log(ev.data.type, ev.data.payload);
});
4. Public config API
GET /v1/config/public
임베드 URL, 기능 플래그, 데모 모드 여부를 JSON으로 반환합니다. 인증 불필요.