Activity #2746
User #73 reacted sad post #361
5/11/2025, 4:27:58 PM
Overview
reactions / #2746
User #73 reacted sad post #361
5/11/2025, 4:27:58 PM
User #73 reacted sad post #361
5/11/2025, 4:27:58 PM
View recordUser #73 reacted sad post #361 · 5/11/2025, 4:27:58 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2746" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2746" ); 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/2746"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2746"
)
reaction = res.json() Response
{
"id": 2746,
"userId": 73,
"targetType": "post",
"targetId": 361,
"type": "sad",
"createdAt": "2025-05-11T16:27:58.891Z"
}