Activity #1636
User #128 reacted angry post #300
1/17/2026, 3:02:16 PM
Overview
reactions / #1636
User #128 reacted angry post #300
1/17/2026, 3:02:16 PM
User #128 reacted angry post #300
1/17/2026, 3:02:16 PM
View recordUser #128 reacted angry post #300 · 1/17/2026, 3:02:16 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1636" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1636" ); 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/1636"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1636"
)
reaction = res.json() Response
{
"id": 1636,
"userId": 128,
"targetType": "post",
"targetId": 300,
"type": "angry",
"createdAt": "2026-01-17T15:02:16.542Z"
}