Activity #646
User #136 reacted like post #145
12/17/2025, 10:50:40 AM
Overview
reactions / #646
User #136 reacted like post #145
12/17/2025, 10:50:40 AM
User #136 reacted like post #145
12/17/2025, 10:50:40 AM
View recordUser #136 reacted like post #145 · 12/17/2025, 10:50:40 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/646" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/646" ); 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/646"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/646"
)
reaction = res.json() Response
{
"id": 646,
"userId": 136,
"targetType": "post",
"targetId": 145,
"type": "like",
"createdAt": "2025-12-17T10:50:40.369Z"
}