Activity #1752
User #36 reacted wow post #420
8/6/2025, 2:38:48 AM
Overview
reactions / #1752
User #36 reacted wow post #420
8/6/2025, 2:38:48 AM
User #36 reacted wow post #420
8/6/2025, 2:38:48 AM
View recordUser #36 reacted wow post #420 · 8/6/2025, 2:38:48 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1752" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1752" ); 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/1752"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1752"
)
reaction = res.json() Response
{
"id": 1752,
"userId": 36,
"targetType": "post",
"targetId": 420,
"type": "wow",
"createdAt": "2025-08-06T02:38:48.315Z"
}