Activity #1469
User #193 reacted sad post #359
4/14/2026, 8:26:25 AM
Overview
reactions / #1469
User #193 reacted sad post #359
4/14/2026, 8:26:25 AM
User #193 reacted sad post #359
4/14/2026, 8:26:25 AM
View recordUser #193 reacted sad post #359 · 4/14/2026, 8:26:25 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1469" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1469" ); 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/1469"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1469"
)
reaction = res.json() Response
{
"id": 1469,
"userId": 193,
"targetType": "post",
"targetId": 359,
"type": "sad",
"createdAt": "2026-04-14T08:26:25.234Z"
}