Activity #443
User #236 reacted like post #174
9/24/2025, 11:23:28 AM
Overview
reactions / #443
User #236 reacted like post #174
9/24/2025, 11:23:28 AM
User #236 reacted like post #174
9/24/2025, 11:23:28 AM
View recordUser #236 reacted like post #174 · 9/24/2025, 11:23:28 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/443" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/443" ); 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/443"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/443"
)
reaction = res.json() Response
{
"id": 443,
"userId": 236,
"targetType": "post",
"targetId": 174,
"type": "like",
"createdAt": "2025-09-24T11:23:28.774Z"
}