Activity #857
User #192 reacted wow post #173
2/12/2026, 12:41:09 PM
Overview
reactions / #857
User #192 reacted wow post #173
2/12/2026, 12:41:09 PM
User #192 reacted wow post #173
2/12/2026, 12:41:09 PM
View recordUser #192 reacted wow post #173 · 2/12/2026, 12:41:09 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/857" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/857" ); 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/857"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/857"
)
reaction = res.json() Response
{
"id": 857,
"userId": 192,
"targetType": "post",
"targetId": 173,
"type": "wow",
"createdAt": "2026-02-12T12:41:09.760Z"
}