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.
- 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> - 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> - 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> - Verify telemetry
The embed posts analytics to
POST /api/reactify/events. See Event schema forthread_impression,reaction_recorded, and related types.

