Activity #566
User #22 reacted angry post #441
7/29/2025, 3:35:47 AM
Overview
reactions / #566
User #22 reacted angry post #441
7/29/2025, 3:35:47 AM
User #22 reacted angry post #441
7/29/2025, 3:35:47 AM
View recordUser #22 reacted angry post #441 · 7/29/2025, 3:35:47 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/566" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/566" ); 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/566"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/566"
)
reaction = res.json() Response
{
"id": 566,
"userId": 22,
"targetType": "post",
"targetId": 441,
"type": "angry",
"createdAt": "2025-07-29T03:35:47.884Z"
}