Activity #752
User #149 reacted wow post #301
12/23/2025, 7:32:55 PM
Overview
reactions / #752
User #149 reacted wow post #301
12/23/2025, 7:32:55 PM
User #149 reacted wow post #301
12/23/2025, 7:32:55 PM
View recordUser #149 reacted wow post #301 · 12/23/2025, 7:32:55 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/752" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/752" ); 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/752"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/752"
)
reaction = res.json() Response
{
"id": 752,
"userId": 149,
"targetType": "post",
"targetId": 301,
"type": "wow",
"createdAt": "2025-12-23T19:32:55.744Z"
}