Activity #2824
User #49 reacted love post #281
12/20/2025, 9:33:44 AM
Overview
reactions / #2824
User #49 reacted love post #281
12/20/2025, 9:33:44 AM
User #49 reacted love post #281
12/20/2025, 9:33:44 AM
View recordUser #49 reacted love post #281 · 12/20/2025, 9:33:44 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2824" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2824" ); 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/2824"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2824"
)
reaction = res.json() Response
{
"id": 2824,
"userId": 49,
"targetType": "post",
"targetId": 281,
"type": "love",
"createdAt": "2025-12-20T09:33:44.315Z"
}