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