Activity #254
User #51 reacted sad post #61
3/1/2026, 5:54:48 AM
Overview
reactions / #254
User #51 reacted sad post #61
3/1/2026, 5:54:48 AM
User #51 reacted sad post #61
3/1/2026, 5:54:48 AM
View recordUser #51 reacted sad post #61 · 3/1/2026, 5:54:48 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/254" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/254" ); 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/254"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/254"
)
reaction = res.json() Response
{
"id": 254,
"userId": 51,
"targetType": "post",
"targetId": 61,
"type": "sad",
"createdAt": "2026-03-01T05:54:48.736Z"
}