Activity #421
User #20 reacted laugh post #487
2/1/2026, 3:51:41 PM
Overview
reactions / #421
User #20 reacted laugh post #487
2/1/2026, 3:51:41 PM
User #20 reacted laugh post #487
2/1/2026, 3:51:41 PM
View recordUser #20 reacted laugh post #487 · 2/1/2026, 3:51:41 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/421" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/421" ); 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/421"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/421"
)
reaction = res.json() Response
{
"id": 421,
"userId": 20,
"targetType": "post",
"targetId": 487,
"type": "laugh",
"createdAt": "2026-02-01T15:51:41.044Z"
}