Activity #102
User #66 reacted love post #238
2/16/2025, 7:14:21 AM
Overview
reactions / #102
User #66 reacted love post #238
2/16/2025, 7:14:21 AM
User #66 reacted love post #238
2/16/2025, 7:14:21 AM
View recordUser #66 reacted love post #238 · 2/16/2025, 7:14:21 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/102" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/102" ); 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/102"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/102"
)
reaction = res.json() Response
{
"id": 102,
"userId": 66,
"targetType": "post",
"targetId": 238,
"type": "love",
"createdAt": "2025-02-16T07:14:21.186Z"
}