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