Activity #1284
User #78 reacted like post #310
11/2/2025, 9:48:36 AM
Overview
reactions / #1284
User #78 reacted like post #310
11/2/2025, 9:48:36 AM
User #78 reacted like post #310
11/2/2025, 9:48:36 AM
View recordUser #78 reacted like post #310 · 11/2/2025, 9:48:36 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1284" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1284" ); 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/1284"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1284"
)
reaction = res.json() Response
{
"id": 1284,
"userId": 78,
"targetType": "post",
"targetId": 310,
"type": "like",
"createdAt": "2025-11-02T09:48:36.263Z"
}