ReactifySDK · Webflow
Add reaction threads with reactify.js and an Embed block. For marketing overlays use ReactionSDK + Webflow (sdk.js + reaction-video).
In-page popup vs hosted record
Same as WordPress: set window.reactifyWprtEmbed.apiKey before reactify.js. Without it, "React To This" / "Stitch this" open https://api.reactionsaas.com/reactify/record in a new tab.
1) Recommended: apiKey + thread id
Bootstrap + embed
<!-- Project Settings → Custom Code → before </body> (or Head) -->
<script>
window.reactifyWprtEmbed = {
base: "https://api.reactionsaas.com",
apiKey: "YOUR_PUBLISHABLE_API_KEY"
};
window.reactifyShopifyEmbed = window.reactifyWprtEmbed;
window.REACTIFY_EMBED_BASE = "https://api.reactionsaas.com";
</script>
<script src="https://reactify-cdn.s3.us-east-2.amazonaws.com/reactify.js?v=1.1.34" defer></script>
<reactify-thread thread="thread_abc123xyz" data-base="https://api.reactionsaas.com"></reactify-thread>2) View-only template (optional)
Use only for preview. Production installs should use step 1 so the recorder stays on your site.
Template (no popup)
<!-- View-only: without apiKey, React To This opens https://api.reactionsaas.com/reactify/record -->
<script src="https://reactify-cdn.s3.us-east-2.amazonaws.com/reactify.js?v=1.1.34" defer></script>
<reactify-thread template="hot-takes"></reactify-thread>