Activity #181
User #144 reacted like post #31
4/30/2025, 10:54:56 PM
Overview
reactions / #181
User #144 reacted like post #31
4/30/2025, 10:54:56 PM
User #144 reacted like post #31
4/30/2025, 10:54:56 PM
View recordUser #144 reacted like post #31 · 4/30/2025, 10:54:56 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/181" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/181" ); 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/181"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/181"
)
reaction = res.json() Response
{
"id": 181,
"userId": 144,
"targetType": "post",
"targetId": 31,
"type": "like",
"createdAt": "2025-04-30T22:54:56.068Z"
}