Activity #918
User #14 reacted angry post #139
9/26/2025, 2:40:17 AM
Overview
reactions / #918
User #14 reacted angry post #139
9/26/2025, 2:40:17 AM
User #14 reacted angry post #139
9/26/2025, 2:40:17 AM
View recordUser #14 reacted angry post #139 · 9/26/2025, 2:40:17 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/918" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/918" ); 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/918"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/918"
)
reaction = res.json() Response
{
"id": 918,
"userId": 14,
"targetType": "post",
"targetId": 139,
"type": "angry",
"createdAt": "2025-09-26T02:40:17.135Z"
}