Activity #2782
User #75 reacted love post #347
8/11/2025, 8:17:47 PM
Overview
reactions / #2782
User #75 reacted love post #347
8/11/2025, 8:17:47 PM
User #75 reacted love post #347
8/11/2025, 8:17:47 PM
View recordUser #75 reacted love post #347 · 8/11/2025, 8:17:47 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2782" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2782" ); 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/2782"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2782"
)
reaction = res.json() Response
{
"id": 2782,
"userId": 75,
"targetType": "post",
"targetId": 347,
"type": "love",
"createdAt": "2025-08-11T20:17:47.873Z"
}