Activity #882
User #180 reacted sad post #132
10/19/2025, 8:18:01 PM
Overview
reactions / #882
User #180 reacted sad post #132
10/19/2025, 8:18:01 PM
User #180 reacted sad post #132
10/19/2025, 8:18:01 PM
View recordUser #180 reacted sad post #132 · 10/19/2025, 8:18:01 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/882" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/882" ); 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/882"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/882"
)
reaction = res.json() Response
{
"id": 882,
"userId": 180,
"targetType": "post",
"targetId": 132,
"type": "sad",
"createdAt": "2025-10-19T20:18:01.818Z"
}