Activity #1733
User #225 reacted sad post #63
3/24/2025, 7:43:21 AM
Overview
reactions / #1733
User #225 reacted sad post #63
3/24/2025, 7:43:21 AM
User #225 reacted sad post #63
3/24/2025, 7:43:21 AM
View recordUser #225 reacted sad post #63 · 3/24/2025, 7:43:21 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1733" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1733" ); 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/1733"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1733"
)
reaction = res.json() Response
{
"id": 1733,
"userId": 225,
"targetType": "post",
"targetId": 63,
"type": "sad",
"createdAt": "2025-03-24T07:43:21.309Z"
}