Activity #1326
User #54 reacted wow post #62
12/16/2025, 3:02:23 AM
Overview
reactions / #1326
User #54 reacted wow post #62
12/16/2025, 3:02:23 AM
User #54 reacted wow post #62
12/16/2025, 3:02:23 AM
View recordUser #54 reacted wow post #62 · 12/16/2025, 3:02:23 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1326" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1326" ); 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/1326"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1326"
)
reaction = res.json() Response
{
"id": 1326,
"userId": 54,
"targetType": "post",
"targetId": 62,
"type": "wow",
"createdAt": "2025-12-16T03:02:23.918Z"
}