Activity #2724
User #36 reacted laugh post #308
7/18/2025, 4:28:47 AM
Overview
reactions / #2724
User #36 reacted laugh post #308
7/18/2025, 4:28:47 AM
User #36 reacted laugh post #308
7/18/2025, 4:28:47 AM
View recordUser #36 reacted laugh post #308 · 7/18/2025, 4:28:47 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2724" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2724" ); 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/2724"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2724"
)
reaction = res.json() Response
{
"id": 2724,
"userId": 36,
"targetType": "post",
"targetId": 308,
"type": "laugh",
"createdAt": "2025-07-18T04:28:47.368Z"
}