Activity #1767
User #27 reacted laugh post #392
10/26/2025, 12:27:19 AM
Overview
reactions / #1767
User #27 reacted laugh post #392
10/26/2025, 12:27:19 AM
User #27 reacted laugh post #392
10/26/2025, 12:27:19 AM
View recordUser #27 reacted laugh post #392 · 10/26/2025, 12:27:19 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1767" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1767" ); 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/1767"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1767"
)
reaction = res.json() Response
{
"id": 1767,
"userId": 27,
"targetType": "post",
"targetId": 392,
"type": "laugh",
"createdAt": "2025-10-26T00:27:19.922Z"
}