Activity #2433
User #230 reacted angry post #269
10/4/2025, 10:19:53 PM
Overview
reactions / #2433
User #230 reacted angry post #269
10/4/2025, 10:19:53 PM
User #230 reacted angry post #269
10/4/2025, 10:19:53 PM
View recordUser #230 reacted angry post #269 · 10/4/2025, 10:19:53 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2433" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2433" ); 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/2433"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2433"
)
reaction = res.json() Response
{
"id": 2433,
"userId": 230,
"targetType": "post",
"targetId": 269,
"type": "angry",
"createdAt": "2025-10-04T22:19:53.315Z"
}