Activity #799
User #231 reacted wow post #298
12/26/2025, 10:25:41 AM
Overview
reactions / #799
User #231 reacted wow post #298
12/26/2025, 10:25:41 AM
User #231 reacted wow post #298
12/26/2025, 10:25:41 AM
View recordUser #231 reacted wow post #298 · 12/26/2025, 10:25:41 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/799" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/799" ); 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/799"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/799"
)
reaction = res.json() Response
{
"id": 799,
"userId": 231,
"targetType": "post",
"targetId": 298,
"type": "wow",
"createdAt": "2025-12-26T10:25:41.658Z"
}