Activity #1680
User #159 reacted like post #393
5/19/2025, 3:35:41 AM
Overview
reactions / #1680
User #159 reacted like post #393
5/19/2025, 3:35:41 AM
User #159 reacted like post #393
5/19/2025, 3:35:41 AM
View recordUser #159 reacted like post #393 · 5/19/2025, 3:35:41 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1680" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1680" ); 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/1680"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1680"
)
reaction = res.json() Response
{
"id": 1680,
"userId": 159,
"targetType": "post",
"targetId": 393,
"type": "like",
"createdAt": "2025-05-19T03:35:41.426Z"
}