Activity #2084
User #95 reacted sad post #449
10/13/2025, 5:55:56 PM
Overview
reactions / #2084
User #95 reacted sad post #449
10/13/2025, 5:55:56 PM
User #95 reacted sad post #449
10/13/2025, 5:55:56 PM
View recordUser #95 reacted sad post #449 · 10/13/2025, 5:55:56 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2084" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2084" ); 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/2084"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2084"
)
reaction = res.json() Response
{
"id": 2084,
"userId": 95,
"targetType": "post",
"targetId": 449,
"type": "sad",
"createdAt": "2025-10-13T17:55:56.681Z"
}