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