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