Activity #673
User #6 reacted like post #364
4/30/2025, 11:03:13 PM
Overview
reactions / #673
User #6 reacted like post #364
4/30/2025, 11:03:13 PM
User #6 reacted like post #364
4/30/2025, 11:03:13 PM
View recordUser #6 reacted like post #364 · 4/30/2025, 11:03:13 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/673" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/673" ); 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/673"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/673"
)
reaction = res.json() Response
{
"id": 673,
"userId": 6,
"targetType": "post",
"targetId": 364,
"type": "like",
"createdAt": "2025-04-30T23:03:13.116Z"
}