Activity #291
User #63 reacted sad post #450
10/29/2025, 12:38:23 PM
Overview
reactions / #291
User #63 reacted sad post #450
10/29/2025, 12:38:23 PM
User #63 reacted sad post #450
10/29/2025, 12:38:23 PM
View recordUser #63 reacted sad post #450 · 10/29/2025, 12:38:23 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/291" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/291" ); 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/291"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/291"
)
reaction = res.json() Response
{
"id": 291,
"userId": 63,
"targetType": "post",
"targetId": 450,
"type": "sad",
"createdAt": "2025-10-29T12:38:23.791Z"
}