Activity #1869
User #106 reacted love post #204
3/8/2025, 5:57:44 AM
Overview
reactions / #1869
User #106 reacted love post #204
3/8/2025, 5:57:44 AM
User #106 reacted love post #204
3/8/2025, 5:57:44 AM
View recordUser #106 reacted love post #204 · 3/8/2025, 5:57:44 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1869" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1869" ); 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/1869"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1869"
)
reaction = res.json() Response
{
"id": 1869,
"userId": 106,
"targetType": "post",
"targetId": 204,
"type": "love",
"createdAt": "2025-03-08T05:57:44.990Z"
}