Activity #2074
User #174 reacted wow post #461
7/20/2025, 1:22:59 PM
Overview
reactions / #2074
User #174 reacted wow post #461
7/20/2025, 1:22:59 PM
User #174 reacted wow post #461
7/20/2025, 1:22:59 PM
View recordUser #174 reacted wow post #461 · 7/20/2025, 1:22:59 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2074" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2074" ); 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/2074"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2074"
)
reaction = res.json() Response
{
"id": 2074,
"userId": 174,
"targetType": "post",
"targetId": 461,
"type": "wow",
"createdAt": "2025-07-20T13:22:59.052Z"
}