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