Activity #300
User #6 reacted angry post #268
12/20/2025, 11:55:23 PM
Overview
reactions / #300
User #6 reacted angry post #268
12/20/2025, 11:55:23 PM
User #6 reacted angry post #268
12/20/2025, 11:55:23 PM
View recordUser #6 reacted angry post #268 · 12/20/2025, 11:55:23 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/300" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/300" ); 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/300"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/300"
)
reaction = res.json() Response
{
"id": 300,
"userId": 6,
"targetType": "post",
"targetId": 268,
"type": "angry",
"createdAt": "2025-12-20T23:55:23.724Z"
}