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