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