Activity #2390
User #179 reacted wow post #400
1/13/2026, 11:21:16 AM
Overview
reactions / #2390
User #179 reacted wow post #400
1/13/2026, 11:21:16 AM
User #179 reacted wow post #400
1/13/2026, 11:21:16 AM
View recordUser #179 reacted wow post #400 · 1/13/2026, 11:21:16 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2390" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2390" ); 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/2390"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2390"
)
reaction = res.json() Response
{
"id": 2390,
"userId": 179,
"targetType": "post",
"targetId": 400,
"type": "wow",
"createdAt": "2026-01-13T11:21:16.009Z"
}