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