Activity #1829
User #122 reacted angry post #383
2/17/2025, 4:13:21 AM
Overview
reactions / #1829
User #122 reacted angry post #383
2/17/2025, 4:13:21 AM
User #122 reacted angry post #383
2/17/2025, 4:13:21 AM
View recordUser #122 reacted angry post #383 · 2/17/2025, 4:13:21 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1829" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1829" ); 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/1829"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1829"
)
reaction = res.json() Response
{
"id": 1829,
"userId": 122,
"targetType": "post",
"targetId": 383,
"type": "angry",
"createdAt": "2025-02-17T04:13:21.353Z"
}