Activity #1936
User #25 reacted wow post #480
2/20/2026, 4:06:51 PM
Overview
reactions / #1936
User #25 reacted wow post #480
2/20/2026, 4:06:51 PM
User #25 reacted wow post #480
2/20/2026, 4:06:51 PM
View recordUser #25 reacted wow post #480 · 2/20/2026, 4:06:51 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1936" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1936" ); 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/1936"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1936"
)
reaction = res.json() Response
{
"id": 1936,
"userId": 25,
"targetType": "post",
"targetId": 480,
"type": "wow",
"createdAt": "2026-02-20T16:06:51.245Z"
}