Activity #531
User #231 reacted sad post #385
10/7/2025, 3:25:10 PM
Overview
reactions / #531
User #231 reacted sad post #385
10/7/2025, 3:25:10 PM
User #231 reacted sad post #385
10/7/2025, 3:25:10 PM
View recordUser #231 reacted sad post #385 · 10/7/2025, 3:25:10 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/531" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/531" ); 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/531"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/531"
)
reaction = res.json() Response
{
"id": 531,
"userId": 231,
"targetType": "post",
"targetId": 385,
"type": "sad",
"createdAt": "2025-10-07T15:25:10.168Z"
}