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