Activity #2651
User #174 reacted laugh post #455
3/20/2025, 9:58:34 PM
Overview
reactions / #2651
User #174 reacted laugh post #455
3/20/2025, 9:58:34 PM
User #174 reacted laugh post #455
3/20/2025, 9:58:34 PM
View recordUser #174 reacted laugh post #455 · 3/20/2025, 9:58:34 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2651" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2651" ); 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/2651"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2651"
)
reaction = res.json() Response
{
"id": 2651,
"userId": 174,
"targetType": "post",
"targetId": 455,
"type": "laugh",
"createdAt": "2025-03-20T21:58:34.184Z"
}