Activity #546
User #79 reacted sad post #365
11/20/2025, 2:45:25 AM
Overview
reactions / #546
User #79 reacted sad post #365
11/20/2025, 2:45:25 AM
User #79 reacted sad post #365
11/20/2025, 2:45:25 AM
View recordUser #79 reacted sad post #365 · 11/20/2025, 2:45:25 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/546" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/546" ); 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/546"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/546"
)
reaction = res.json() Response
{
"id": 546,
"userId": 79,
"targetType": "post",
"targetId": 365,
"type": "sad",
"createdAt": "2025-11-20T02:45:25.021Z"
}