Activity #2334
User #41 reacted laugh post #463
11/17/2025, 3:52:35 AM
Overview
reactions / #2334
User #41 reacted laugh post #463
11/17/2025, 3:52:35 AM
User #41 reacted laugh post #463
11/17/2025, 3:52:35 AM
View recordUser #41 reacted laugh post #463 · 11/17/2025, 3:52:35 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2334" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2334" ); 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/2334"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2334"
)
reaction = res.json() Response
{
"id": 2334,
"userId": 41,
"targetType": "post",
"targetId": 463,
"type": "laugh",
"createdAt": "2025-11-17T03:52:35.223Z"
}