Activity #549
User #174 reacted love post #8
3/11/2026, 7:14:00 AM
Overview
reactions / #549
User #174 reacted love post #8
3/11/2026, 7:14:00 AM
User #174 reacted love post #8
3/11/2026, 7:14:00 AM
View recordUser #174 reacted love post #8 · 3/11/2026, 7:14:00 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/549" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/549" ); 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/549"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/549"
)
reaction = res.json() Response
{
"id": 549,
"userId": 174,
"targetType": "post",
"targetId": 8,
"type": "love",
"createdAt": "2026-03-11T07:14:00.148Z"
}