Activity #2677
User #93 reacted angry post #334
4/8/2025, 12:26:05 AM
Overview
reactions / #2677
User #93 reacted angry post #334
4/8/2025, 12:26:05 AM
User #93 reacted angry post #334
4/8/2025, 12:26:05 AM
View recordUser #93 reacted angry post #334 · 4/8/2025, 12:26:05 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2677" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2677" ); 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/2677"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2677"
)
reaction = res.json() Response
{
"id": 2677,
"userId": 93,
"targetType": "post",
"targetId": 334,
"type": "angry",
"createdAt": "2025-04-08T00:26:05.188Z"
}