Activity #403
User #194 reacted laugh post #138
4/28/2025, 1:18:11 PM
Overview
reactions / #403
User #194 reacted laugh post #138
4/28/2025, 1:18:11 PM
User #194 reacted laugh post #138
4/28/2025, 1:18:11 PM
View recordUser #194 reacted laugh post #138 · 4/28/2025, 1:18:11 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/403" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/403" ); 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/403"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/403"
)
reaction = res.json() Response
{
"id": 403,
"userId": 194,
"targetType": "post",
"targetId": 138,
"type": "laugh",
"createdAt": "2025-04-28T13:18:11.474Z"
}