Activity #11
User #244 reacted angry post #110
4/13/2026, 12:54:23 PM
Overview
reactions / #11
User #244 reacted angry post #110
4/13/2026, 12:54:23 PM
User #244 reacted angry post #110
4/13/2026, 12:54:23 PM
View recordUser #244 reacted angry post #110 · 4/13/2026, 12:54:23 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/11" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/11" ); 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/11"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/11"
)
reaction = res.json() Response
{
"id": 11,
"userId": 244,
"targetType": "post",
"targetId": 110,
"type": "angry",
"createdAt": "2026-04-13T12:54:23.058Z"
}