Activity #2323
User #234 reacted like post #416
7/5/2025, 3:47:08 AM
Overview
reactions / #2323
User #234 reacted like post #416
7/5/2025, 3:47:08 AM
User #234 reacted like post #416
7/5/2025, 3:47:08 AM
View recordUser #234 reacted like post #416 · 7/5/2025, 3:47:08 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2323" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2323" ); 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/2323"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2323"
)
reaction = res.json() Response
{
"id": 2323,
"userId": 234,
"targetType": "post",
"targetId": 416,
"type": "like",
"createdAt": "2025-07-05T03:47:08.614Z"
}