Activity #345
User #196 reacted angry post #420
8/14/2025, 5:27:15 PM
Overview
reactions / #345
User #196 reacted angry post #420
8/14/2025, 5:27:15 PM
User #196 reacted angry post #420
8/14/2025, 5:27:15 PM
View recordUser #196 reacted angry post #420 · 8/14/2025, 5:27:15 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/345" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/345" ); 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/345"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/345"
)
reaction = res.json() Response
{
"id": 345,
"userId": 196,
"targetType": "post",
"targetId": 420,
"type": "angry",
"createdAt": "2025-08-14T17:27:15.553Z"
}