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