Activity #408
User #171 reacted angry post #463
3/14/2026, 3:39:35 AM
Overview
reactions / #408
User #171 reacted angry post #463
3/14/2026, 3:39:35 AM
User #171 reacted angry post #463
3/14/2026, 3:39:35 AM
View recordUser #171 reacted angry post #463 · 3/14/2026, 3:39:35 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/408" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/408" ); 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/408"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/408"
)
reaction = res.json() Response
{
"id": 408,
"userId": 171,
"targetType": "post",
"targetId": 463,
"type": "angry",
"createdAt": "2026-03-14T03:39:35.538Z"
}