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