Activity #1041
User #76 reacted angry post #14
9/15/2025, 2:39:54 PM
Overview
reactions / #1041
User #76 reacted angry post #14
9/15/2025, 2:39:54 PM
User #76 reacted angry post #14
9/15/2025, 2:39:54 PM
View recordUser #76 reacted angry post #14 · 9/15/2025, 2:39:54 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1041" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1041" ); 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/1041"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1041"
)
reaction = res.json() Response
{
"id": 1041,
"userId": 76,
"targetType": "post",
"targetId": 14,
"type": "angry",
"createdAt": "2025-09-15T14:39:54.837Z"
}