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