Activity #2972
User #29 reacted angry post #200
3/28/2025, 6:46:30 PM
Overview
reactions / #2972
User #29 reacted angry post #200
3/28/2025, 6:46:30 PM
User #29 reacted angry post #200
3/28/2025, 6:46:30 PM
View recordUser #29 reacted angry post #200 · 3/28/2025, 6:46:30 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2972" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2972" ); 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/2972"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2972"
)
reaction = res.json() Response
{
"id": 2972,
"userId": 29,
"targetType": "post",
"targetId": 200,
"type": "angry",
"createdAt": "2025-03-28T18:46:30.290Z"
}