Activity #1586
User #28 reacted like post #108
2/6/2026, 2:13:19 AM
Overview
reactions / #1586
User #28 reacted like post #108
2/6/2026, 2:13:19 AM
User #28 reacted like post #108
2/6/2026, 2:13:19 AM
View recordUser #28 reacted like post #108 · 2/6/2026, 2:13:19 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1586" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1586" ); 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/1586"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1586"
)
reaction = res.json() Response
{
"id": 1586,
"userId": 28,
"targetType": "post",
"targetId": 108,
"type": "like",
"createdAt": "2026-02-06T02:13:19.989Z"
}