Activity #940
User #58 reacted like post #66
2/8/2026, 11:43:12 AM
Overview
reactions / #940
User #58 reacted like post #66
2/8/2026, 11:43:12 AM
User #58 reacted like post #66
2/8/2026, 11:43:12 AM
View recordUser #58 reacted like post #66 · 2/8/2026, 11:43:12 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/940" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/940" ); 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/940"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/940"
)
reaction = res.json() Response
{
"id": 940,
"userId": 58,
"targetType": "post",
"targetId": 66,
"type": "like",
"createdAt": "2026-02-08T11:43:12.524Z"
}