Activity #2881
User #246 reacted laugh post #199
1/4/2026, 10:03:32 PM
Overview
reactions / #2881
User #246 reacted laugh post #199
1/4/2026, 10:03:32 PM
User #246 reacted laugh post #199
1/4/2026, 10:03:32 PM
View recordUser #246 reacted laugh post #199 · 1/4/2026, 10:03:32 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2881" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2881" ); 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/2881"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2881"
)
reaction = res.json() Response
{
"id": 2881,
"userId": 246,
"targetType": "post",
"targetId": 199,
"type": "laugh",
"createdAt": "2026-01-04T22:03:32.458Z"
}