Activity #1223
User #176 reacted angry post #72
8/8/2025, 5:09:43 AM
Overview
reactions / #1223
User #176 reacted angry post #72
8/8/2025, 5:09:43 AM
User #176 reacted angry post #72
8/8/2025, 5:09:43 AM
View recordUser #176 reacted angry post #72 · 8/8/2025, 5:09:43 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1223" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1223" ); 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/1223"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1223"
)
reaction = res.json() Response
{
"id": 1223,
"userId": 176,
"targetType": "post",
"targetId": 72,
"type": "angry",
"createdAt": "2025-08-08T05:09:43.596Z"
}