Activity #2969
User #173 reacted laugh post #228
4/22/2026, 7:47:16 AM
Overview
reactions / #2969
User #173 reacted laugh post #228
4/22/2026, 7:47:16 AM
User #173 reacted laugh post #228
4/22/2026, 7:47:16 AM
View recordUser #173 reacted laugh post #228 · 4/22/2026, 7:47:16 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2969" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2969" ); 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/2969"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2969"
)
reaction = res.json() Response
{
"id": 2969,
"userId": 173,
"targetType": "post",
"targetId": 228,
"type": "laugh",
"createdAt": "2026-04-22T07:47:16.489Z"
}