Activity #2188
User #116 reacted like post #264
5/4/2025, 11:26:50 AM
Overview
reactions / #2188
User #116 reacted like post #264
5/4/2025, 11:26:50 AM
User #116 reacted like post #264
5/4/2025, 11:26:50 AM
View recordUser #116 reacted like post #264 · 5/4/2025, 11:26:50 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2188" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2188" ); 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/2188"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2188"
)
reaction = res.json() Response
{
"id": 2188,
"userId": 116,
"targetType": "post",
"targetId": 264,
"type": "like",
"createdAt": "2025-05-04T11:26:50.929Z"
}