Activity #153
User #127 reacted love post #217
9/19/2025, 5:54:21 PM
Overview
reactions / #153
User #127 reacted love post #217
9/19/2025, 5:54:21 PM
User #127 reacted love post #217
9/19/2025, 5:54:21 PM
View recordUser #127 reacted love post #217 · 9/19/2025, 5:54:21 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/153" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/153" ); 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/153"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/153"
)
reaction = res.json() Response
{
"id": 153,
"userId": 127,
"targetType": "post",
"targetId": 217,
"type": "love",
"createdAt": "2025-09-19T17:54:21.034Z"
}