Activity #589
User #212 reacted like post #490
11/20/2025, 1:56:03 AM
Overview
reactions / #589
User #212 reacted like post #490
11/20/2025, 1:56:03 AM
User #212 reacted like post #490
11/20/2025, 1:56:03 AM
View recordUser #212 reacted like post #490 · 11/20/2025, 1:56:03 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/589" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/589" ); 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/589"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/589"
)
reaction = res.json() Response
{
"id": 589,
"userId": 212,
"targetType": "post",
"targetId": 490,
"type": "like",
"createdAt": "2025-11-20T01:56:03.812Z"
}