ReactionSaaS
Documentation

Quickstart

ReactifySDK · Getting started

Recommended path matches WordPress: set reactifyWprtEmbed.apiKey before reactify.js, then embed a concrete thread id so "React To This" opens an in-page modal.

  1. Bootstrap apiKey + embed thread (in-page popup)

    Replace YOUR_PUBLISHABLE_API_KEY and YOUR_THREAD_ID from the dashboard. Base is https://api.reactionsaas.com.

    Recommended install
    <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="YOUR_THREAD_ID" data-base="https://api.reactionsaas.com"></reactify-thread>
  2. Verify the popup

    In DevTools: window.reactifyWprtEmbed?.apiKey is set, and "React To This" is a button (not a link to https://api.reactionsaas.com/reactify/record).

  3. View-only / template preview (optional)

    Script without apiKey still shows the thread, but CTAs leave the page. Prefer the recommended snippet above for production.

    View-only template
    <!-- 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>
  4. Verify telemetry

    The embed posts analytics to POST /api/reactify/events. See Event schema.

Open SDK playgroundHTML install guideReact install