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