Activity #700
User #207 reacted love post #199
3/31/2025, 9:48:29 AM
Overview
reactions / #700
User #207 reacted love post #199
3/31/2025, 9:48:29 AM
User #207 reacted love post #199
3/31/2025, 9:48:29 AM
View recordUser #207 reacted love post #199 · 3/31/2025, 9:48:29 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/700" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/700" ); 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/700"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/700"
)
reaction = res.json() Response
{
"id": 700,
"userId": 207,
"targetType": "post",
"targetId": 199,
"type": "love",
"createdAt": "2025-03-31T09:48:29.254Z"
}