Activity #590
User #104 reacted like post #45
3/5/2026, 2:16:53 PM
Overview
reactions / #590
User #104 reacted like post #45
3/5/2026, 2:16:53 PM
User #104 reacted like post #45
3/5/2026, 2:16:53 PM
View recordUser #104 reacted like post #45 · 3/5/2026, 2:16:53 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/590" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/590" ); 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/590"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/590"
)
reaction = res.json() Response
{
"id": 590,
"userId": 104,
"targetType": "post",
"targetId": 45,
"type": "like",
"createdAt": "2026-03-05T14:16:53.570Z"
}