Activity #2183
User #176 reacted laugh post #170
5/13/2025, 7:42:28 AM
Overview
reactions / #2183
User #176 reacted laugh post #170
5/13/2025, 7:42:28 AM
User #176 reacted laugh post #170
5/13/2025, 7:42:28 AM
View recordUser #176 reacted laugh post #170 · 5/13/2025, 7:42:28 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2183" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2183" ); 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/2183"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2183"
)
reaction = res.json() Response
{
"id": 2183,
"userId": 176,
"targetType": "post",
"targetId": 170,
"type": "laugh",
"createdAt": "2025-05-13T07:42:28.039Z"
}