Activity #2864
User #162 reacted sad post #369
11/5/2025, 4:11:09 AM
Overview
reactions / #2864
User #162 reacted sad post #369
11/5/2025, 4:11:09 AM
User #162 reacted sad post #369
11/5/2025, 4:11:09 AM
View recordUser #162 reacted sad post #369 · 11/5/2025, 4:11:09 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2864" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2864" ); 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/2864"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2864"
)
reaction = res.json() Response
{
"id": 2864,
"userId": 162,
"targetType": "post",
"targetId": 369,
"type": "sad",
"createdAt": "2025-11-05T04:11:09.262Z"
}