Activity #2587
User #144 reacted like post #475
7/31/2025, 11:28:01 PM
Overview
reactions / #2587
User #144 reacted like post #475
7/31/2025, 11:28:01 PM
User #144 reacted like post #475
7/31/2025, 11:28:01 PM
View recordUser #144 reacted like post #475 · 7/31/2025, 11:28:01 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2587" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2587" ); 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/2587"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2587"
)
reaction = res.json() Response
{
"id": 2587,
"userId": 144,
"targetType": "post",
"targetId": 475,
"type": "like",
"createdAt": "2025-07-31T23:28:01.925Z"
}