Activity #1409
User #76 reacted wow post #356
11/28/2025, 2:44:57 AM
Overview
reactions / #1409
User #76 reacted wow post #356
11/28/2025, 2:44:57 AM
User #76 reacted wow post #356
11/28/2025, 2:44:57 AM
View recordUser #76 reacted wow post #356 · 11/28/2025, 2:44:57 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1409" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1409" ); 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/1409"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1409"
)
reaction = res.json() Response
{
"id": 1409,
"userId": 76,
"targetType": "post",
"targetId": 356,
"type": "wow",
"createdAt": "2025-11-28T02:44:57.383Z"
}