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