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