Activity #2391
User #213 reacted like post #190
12/15/2025, 9:16:03 PM
Overview
reactions / #2391
User #213 reacted like post #190
12/15/2025, 9:16:03 PM
User #213 reacted like post #190
12/15/2025, 9:16:03 PM
View recordUser #213 reacted like post #190 · 12/15/2025, 9:16:03 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2391" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2391" ); 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/2391"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2391"
)
reaction = res.json() Response
{
"id": 2391,
"userId": 213,
"targetType": "post",
"targetId": 190,
"type": "like",
"createdAt": "2025-12-15T21:16:03.014Z"
}