Activity #2099
User #83 reacted sad post #110
3/26/2026, 12:58:36 PM
Overview
reactions / #2099
User #83 reacted sad post #110
3/26/2026, 12:58:36 PM
User #83 reacted sad post #110
3/26/2026, 12:58:36 PM
View recordUser #83 reacted sad post #110 · 3/26/2026, 12:58:36 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2099" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2099" ); 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/2099"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2099"
)
reaction = res.json() Response
{
"id": 2099,
"userId": 83,
"targetType": "post",
"targetId": 110,
"type": "sad",
"createdAt": "2026-03-26T12:58:36.148Z"
}