Activity #1889
User #153 reacted like post #162
3/23/2026, 9:21:17 AM
Overview
reactions / #1889
User #153 reacted like post #162
3/23/2026, 9:21:17 AM
User #153 reacted like post #162
3/23/2026, 9:21:17 AM
View recordUser #153 reacted like post #162 · 3/23/2026, 9:21:17 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1889" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1889" ); 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/1889"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1889"
)
reaction = res.json() Response
{
"id": 1889,
"userId": 153,
"targetType": "post",
"targetId": 162,
"type": "like",
"createdAt": "2026-03-23T09:21:17.497Z"
}