Activity #1238
User #105 reacted sad post #456
7/20/2025, 2:49:11 PM
Overview
reactions / #1238
User #105 reacted sad post #456
7/20/2025, 2:49:11 PM
User #105 reacted sad post #456
7/20/2025, 2:49:11 PM
View recordUser #105 reacted sad post #456 · 7/20/2025, 2:49:11 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1238" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1238" ); 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/1238"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1238"
)
reaction = res.json() Response
{
"id": 1238,
"userId": 105,
"targetType": "post",
"targetId": 456,
"type": "sad",
"createdAt": "2025-07-20T14:49:11.358Z"
}