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