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