Activity #956
User #170 reacted love post #450
6/21/2025, 6:09:32 AM
Overview
reactions / #956
User #170 reacted love post #450
6/21/2025, 6:09:32 AM
User #170 reacted love post #450
6/21/2025, 6:09:32 AM
View recordUser #170 reacted love post #450 · 6/21/2025, 6:09:32 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/956" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/956" ); 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/956"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/956"
)
reaction = res.json() Response
{
"id": 956,
"userId": 170,
"targetType": "post",
"targetId": 450,
"type": "love",
"createdAt": "2025-06-21T06:09:32.114Z"
}