Activity #2575
User #219 reacted laugh post #92
12/11/2025, 4:44:07 PM
Overview
reactions / #2575
User #219 reacted laugh post #92
12/11/2025, 4:44:07 PM
User #219 reacted laugh post #92
12/11/2025, 4:44:07 PM
View recordUser #219 reacted laugh post #92 · 12/11/2025, 4:44:07 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2575" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2575" ); 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/2575"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2575"
)
reaction = res.json() Response
{
"id": 2575,
"userId": 219,
"targetType": "post",
"targetId": 92,
"type": "laugh",
"createdAt": "2025-12-11T16:44:07.706Z"
}