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