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