Activity #231
User #45 reacted wow post #343
5/17/2026, 1:33:30 AM
Overview
reactions / #231
User #45 reacted wow post #343
5/17/2026, 1:33:30 AM
User #45 reacted wow post #343
5/17/2026, 1:33:30 AM
View recordUser #45 reacted wow post #343 · 5/17/2026, 1:33:30 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/231" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/231" ); 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/231"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/231"
)
reaction = res.json() Response
{
"id": 231,
"userId": 45,
"targetType": "post",
"targetId": 343,
"type": "wow",
"createdAt": "2026-05-17T01:33:30.479Z"
}