Activity #450
User #88 reacted angry post #231
1/19/2025, 3:17:34 PM
Overview
reactions / #450
User #88 reacted angry post #231
1/19/2025, 3:17:34 PM
User #88 reacted angry post #231
1/19/2025, 3:17:34 PM
View recordUser #88 reacted angry post #231 · 1/19/2025, 3:17:34 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/450" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/450" ); 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/450"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/450"
)
reaction = res.json() Response
{
"id": 450,
"userId": 88,
"targetType": "post",
"targetId": 231,
"type": "angry",
"createdAt": "2025-01-19T15:17:34.919Z"
}