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