Activity #1055
User #108 reacted love post #413
2/28/2026, 5:22:51 PM
Overview
reactions / #1055
User #108 reacted love post #413
2/28/2026, 5:22:51 PM
User #108 reacted love post #413
2/28/2026, 5:22:51 PM
View recordUser #108 reacted love post #413 · 2/28/2026, 5:22:51 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1055" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1055" ); 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/1055"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1055"
)
reaction = res.json() Response
{
"id": 1055,
"userId": 108,
"targetType": "post",
"targetId": 413,
"type": "love",
"createdAt": "2026-02-28T17:22:51.393Z"
}