ReactionSaaS
Documentation

ReactifySDK · Getting started

Quickstart

Embed a live thread using a published template slug, then swap in a concrete thread id when you create one via API or dashboard.

  1. Add the bundle

    Place the script in <head> or before closing body. Use defer for correct order.

    Script
    <script src="https://reactify-cdn.s3.us-east-2.amazonaws.com/reactify.js" defer></script>
  2. Drop in the custom element

    Start from a template (e.g. hot-takes) from the template gallery.

    Template embed
    <script src="https://reactify-cdn.s3.us-east-2.amazonaws.com/reactify.js" defer></script>
    <reactify-thread template="hot-takes"></reactify-thread>
  3. Pin to a specific thread

    After you create a thread (API or UI), pass its id for a stable canonical embed.

    Thread id embed
    <script src="https://reactify-cdn.s3.us-east-2.amazonaws.com/reactify.js" defer></script>
    <reactify-thread thread="YOUR_THREAD_ID"></reactify-thread>
  4. Verify telemetry

    The embed posts analytics to POST /api/reactify/events. See Event schema for thread_impression, reaction_recorded, and related types.

Open SDK playgroundHTML install guideGuided onboarding