Activity #1245
User #202 reacted angry post #285
3/11/2025, 10:24:09 AM
Overview
reactions / #1245
User #202 reacted angry post #285
3/11/2025, 10:24:09 AM
User #202 reacted angry post #285
3/11/2025, 10:24:09 AM
View recordUser #202 reacted angry post #285 · 3/11/2025, 10:24:09 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1245" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1245" ); 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/1245"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1245"
)
reaction = res.json() Response
{
"id": 1245,
"userId": 202,
"targetType": "post",
"targetId": 285,
"type": "angry",
"createdAt": "2025-03-11T10:24:09.119Z"
}