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