Activity #1576
User #99 reacted like post #489
7/22/2025, 1:44:39 PM
Overview
reactions / #1576
User #99 reacted like post #489
7/22/2025, 1:44:39 PM
User #99 reacted like post #489
7/22/2025, 1:44:39 PM
View recordUser #99 reacted like post #489 · 7/22/2025, 1:44:39 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1576" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1576" ); 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/1576"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1576"
)
reaction = res.json() Response
{
"id": 1576,
"userId": 99,
"targetType": "post",
"targetId": 489,
"type": "like",
"createdAt": "2025-07-22T13:44:39.032Z"
}