Activity #1786
User #94 reacted love post #286
3/4/2025, 8:47:13 PM
Overview
reactions / #1786
User #94 reacted love post #286
3/4/2025, 8:47:13 PM
User #94 reacted love post #286
3/4/2025, 8:47:13 PM
View recordUser #94 reacted love post #286 · 3/4/2025, 8:47:13 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1786" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1786" ); 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/1786"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1786"
)
reaction = res.json() Response
{
"id": 1786,
"userId": 94,
"targetType": "post",
"targetId": 286,
"type": "love",
"createdAt": "2025-03-04T20:47:13.071Z"
}