Activity #1639
User #130 reacted sad post #58
1/2/2026, 1:12:53 AM
Overview
reactions / #1639
User #130 reacted sad post #58
1/2/2026, 1:12:53 AM
User #130 reacted sad post #58
1/2/2026, 1:12:53 AM
View recordUser #130 reacted sad post #58 · 1/2/2026, 1:12:53 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1639" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1639" ); 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/1639"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1639"
)
reaction = res.json() Response
{
"id": 1639,
"userId": 130,
"targetType": "post",
"targetId": 58,
"type": "sad",
"createdAt": "2026-01-02T01:12:53.792Z"
}