Activity #454
User #79 reacted wow post #244
6/27/2025, 3:45:52 AM
Overview
reactions / #454
User #79 reacted wow post #244
6/27/2025, 3:45:52 AM
User #79 reacted wow post #244
6/27/2025, 3:45:52 AM
View recordUser #79 reacted wow post #244 · 6/27/2025, 3:45:52 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/454" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/454" ); 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/454"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/454"
)
reaction = res.json() Response
{
"id": 454,
"userId": 79,
"targetType": "post",
"targetId": 244,
"type": "wow",
"createdAt": "2025-06-27T03:45:52.458Z"
}