Activity #1002
User #82 reacted like post #325
5/6/2026, 1:25:01 PM
Overview
reactions / #1002
User #82 reacted like post #325
5/6/2026, 1:25:01 PM
User #82 reacted like post #325
5/6/2026, 1:25:01 PM
View recordUser #82 reacted like post #325 · 5/6/2026, 1:25:01 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1002" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1002" ); 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/1002"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1002"
)
reaction = res.json() Response
{
"id": 1002,
"userId": 82,
"targetType": "post",
"targetId": 325,
"type": "like",
"createdAt": "2026-05-06T13:25:01.077Z"
}