Activity #2672
User #46 reacted sad post #307
4/21/2026, 7:03:15 AM
Overview
reactions / #2672
User #46 reacted sad post #307
4/21/2026, 7:03:15 AM
User #46 reacted sad post #307
4/21/2026, 7:03:15 AM
View recordUser #46 reacted sad post #307 · 4/21/2026, 7:03:15 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2672" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2672" ); 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/2672"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2672"
)
reaction = res.json() Response
{
"id": 2672,
"userId": 46,
"targetType": "post",
"targetId": 307,
"type": "sad",
"createdAt": "2026-04-21T07:03:15.175Z"
}