Activity #2847
User #184 reacted sad post #134
9/11/2025, 4:43:19 AM
Overview
reactions / #2847
User #184 reacted sad post #134
9/11/2025, 4:43:19 AM
User #184 reacted sad post #134
9/11/2025, 4:43:19 AM
View recordUser #184 reacted sad post #134 · 9/11/2025, 4:43:19 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/2847" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/2847" ); 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/2847"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/2847"
)
reaction = res.json() Response
{
"id": 2847,
"userId": 184,
"targetType": "post",
"targetId": 134,
"type": "sad",
"createdAt": "2025-09-11T04:43:19.180Z"
}