Activity #1461
User #125 reacted angry post #128
12/20/2025, 9:53:54 PM
Overview
reactions / #1461
User #125 reacted angry post #128
12/20/2025, 9:53:54 PM
User #125 reacted angry post #128
12/20/2025, 9:53:54 PM
View recordUser #125 reacted angry post #128 · 12/20/2025, 9:53:54 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1461" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1461" ); 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/1461"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1461"
)
reaction = res.json() Response
{
"id": 1461,
"userId": 125,
"targetType": "post",
"targetId": 128,
"type": "angry",
"createdAt": "2025-12-20T21:53:54.632Z"
}