Activity #2692
User #136 reacted love post #467
4/22/2025, 9:40:19 AM
Overview
reactions / #2692
User #136 reacted love post #467
4/22/2025, 9:40:19 AM
User #136 reacted love post #467
4/22/2025, 9:40:19 AM
View recordUser #136 reacted love post #467 · 4/22/2025, 9:40:19 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2692" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2692" ); 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/2692"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2692"
)
reaction = res.json() Response
{
"id": 2692,
"userId": 136,
"targetType": "post",
"targetId": 467,
"type": "love",
"createdAt": "2025-04-22T09:40:19.976Z"
}