Activity #2873
User #5 reacted like post #444
4/14/2026, 9:22:14 PM
Overview
reactions / #2873
User #5 reacted like post #444
4/14/2026, 9:22:14 PM
User #5 reacted like post #444
4/14/2026, 9:22:14 PM
View recordUser #5 reacted like post #444 · 4/14/2026, 9:22:14 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2873" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2873" ); 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/2873"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2873"
)
reaction = res.json() Response
{
"id": 2873,
"userId": 5,
"targetType": "post",
"targetId": 444,
"type": "like",
"createdAt": "2026-04-14T21:22:14.766Z"
}