Activity #2240
User #247 reacted sad post #316
6/30/2025, 3:00:49 PM
Overview
reactions / #2240
User #247 reacted sad post #316
6/30/2025, 3:00:49 PM
User #247 reacted sad post #316
6/30/2025, 3:00:49 PM
View recordUser #247 reacted sad post #316 · 6/30/2025, 3:00:49 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2240" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2240" ); 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/2240"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2240"
)
reaction = res.json() Response
{
"id": 2240,
"userId": 247,
"targetType": "post",
"targetId": 316,
"type": "sad",
"createdAt": "2025-06-30T15:00:49.714Z"
}