Activity #383
User #10 reacted wow post #226
1/14/2026, 11:29:01 AM
Overview
reactions / #383
User #10 reacted wow post #226
1/14/2026, 11:29:01 AM
User #10 reacted wow post #226
1/14/2026, 11:29:01 AM
View recordUser #10 reacted wow post #226 · 1/14/2026, 11:29:01 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/383" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/383" ); 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/383"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/383"
)
reaction = res.json() Response
{
"id": 383,
"userId": 10,
"targetType": "post",
"targetId": 226,
"type": "wow",
"createdAt": "2026-01-14T11:29:01.153Z"
}