Activity #1369
User #36 reacted angry post #402
12/25/2025, 1:25:04 AM
Overview
reactions / #1369
User #36 reacted angry post #402
12/25/2025, 1:25:04 AM
User #36 reacted angry post #402
12/25/2025, 1:25:04 AM
View recordUser #36 reacted angry post #402 · 12/25/2025, 1:25:04 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1369" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1369" ); 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/1369"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1369"
)
reaction = res.json() Response
{
"id": 1369,
"userId": 36,
"targetType": "post",
"targetId": 402,
"type": "angry",
"createdAt": "2025-12-25T01:25:04.749Z"
}