Activity #464
User #92 reacted wow post #124
3/4/2025, 6:43:04 PM
Overview
reactions / #464
User #92 reacted wow post #124
3/4/2025, 6:43:04 PM
User #92 reacted wow post #124
3/4/2025, 6:43:04 PM
View recordUser #92 reacted wow post #124 · 3/4/2025, 6:43:04 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/464" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/464" ); 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/464"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/464"
)
reaction = res.json() Response
{
"id": 464,
"userId": 92,
"targetType": "post",
"targetId": 124,
"type": "wow",
"createdAt": "2025-03-04T18:43:04.034Z"
}