Activity #2224
User #122 reacted like post #170
4/6/2026, 5:30:24 PM
Overview
reactions / #2224
User #122 reacted like post #170
4/6/2026, 5:30:24 PM
User #122 reacted like post #170
4/6/2026, 5:30:24 PM
View recordUser #122 reacted like post #170 · 4/6/2026, 5:30:24 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2224" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2224" ); 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/2224"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2224"
)
reaction = res.json() Response
{
"id": 2224,
"userId": 122,
"targetType": "post",
"targetId": 170,
"type": "like",
"createdAt": "2026-04-06T17:30:24.731Z"
}