Activity #893
User #42 reacted like post #256
8/30/2025, 10:02:23 PM
Overview
reactions / #893
User #42 reacted like post #256
8/30/2025, 10:02:23 PM
User #42 reacted like post #256
8/30/2025, 10:02:23 PM
View recordUser #42 reacted like post #256 · 8/30/2025, 10:02:23 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/893" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/893" ); 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/893"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/893"
)
reaction = res.json() Response
{
"id": 893,
"userId": 42,
"targetType": "post",
"targetId": 256,
"type": "like",
"createdAt": "2025-08-30T22:02:23.116Z"
}