Activity #215
User #176 reacted like post #367
10/15/2025, 10:05:47 AM
Overview
reactions / #215
User #176 reacted like post #367
10/15/2025, 10:05:47 AM
User #176 reacted like post #367
10/15/2025, 10:05:47 AM
View recordUser #176 reacted like post #367 · 10/15/2025, 10:05:47 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/215" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/215" ); 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/215"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/215"
)
reaction = res.json() Response
{
"id": 215,
"userId": 176,
"targetType": "post",
"targetId": 367,
"type": "like",
"createdAt": "2025-10-15T10:05:47.631Z"
}