Activity #2928
User #172 reacted laugh post #158
9/5/2025, 6:10:07 AM
Overview
reactions / #2928
User #172 reacted laugh post #158
9/5/2025, 6:10:07 AM
User #172 reacted laugh post #158
9/5/2025, 6:10:07 AM
View recordUser #172 reacted laugh post #158 · 9/5/2025, 6:10:07 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2928" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2928" ); 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/2928"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2928"
)
reaction = res.json() Response
{
"id": 2928,
"userId": 172,
"targetType": "post",
"targetId": 158,
"type": "laugh",
"createdAt": "2025-09-05T06:10:07.368Z"
}