Activity #452
User #1 reacted love post #456
7/3/2025, 11:35:53 AM
Overview
reactions / #452
User #1 reacted love post #456
7/3/2025, 11:35:53 AM
User #1 reacted love post #456
7/3/2025, 11:35:53 AM
View recordUser #1 reacted love post #456 · 7/3/2025, 11:35:53 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/452" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/452" ); 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/452"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/452"
)
reaction = res.json() Response
{
"id": 452,
"userId": 1,
"targetType": "post",
"targetId": 456,
"type": "love",
"createdAt": "2025-07-03T11:35:53.025Z"
}