Activity #1618
User #100 reacted wow post #482
1/20/2026, 5:22:25 AM
Overview
reactions / #1618
User #100 reacted wow post #482
1/20/2026, 5:22:25 AM
User #100 reacted wow post #482
1/20/2026, 5:22:25 AM
View recordUser #100 reacted wow post #482 · 1/20/2026, 5:22:25 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1618" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1618" ); const reaction = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/reactions.d.ts https://example-data.com/types/reactions.d.ts
import type { Reaction } from "./types/reactions";
const res = await fetch(
"https://example-data.com/api/v1/reactions/1618"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1618"
)
reaction = res.json() Response
{
"id": 1618,
"userId": 100,
"targetType": "post",
"targetId": 482,
"type": "wow",
"createdAt": "2026-01-20T05:22:25.974Z"
}