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