Activity #1728
User #85 reacted love post #28
6/8/2025, 2:56:47 PM
Overview
reactions / #1728
User #85 reacted love post #28
6/8/2025, 2:56:47 PM
User #85 reacted love post #28
6/8/2025, 2:56:47 PM
View recordUser #85 reacted love post #28 · 6/8/2025, 2:56:47 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1728" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1728" ); 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/1728"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1728"
)
reaction = res.json() Response
{
"id": 1728,
"userId": 85,
"targetType": "post",
"targetId": 28,
"type": "love",
"createdAt": "2025-06-08T14:56:47.180Z"
}