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