Activity #803
User #2 reacted laugh post #397
11/23/2025, 8:05:03 PM
Overview
reactions / #803
User #2 reacted laugh post #397
11/23/2025, 8:05:03 PM
User #2 reacted laugh post #397
11/23/2025, 8:05:03 PM
View recordUser #2 reacted laugh post #397 · 11/23/2025, 8:05:03 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/803" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/803" ); 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/803"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/803"
)
reaction = res.json() Response
{
"id": 803,
"userId": 2,
"targetType": "post",
"targetId": 397,
"type": "laugh",
"createdAt": "2025-11-23T20:05:03.986Z"
}