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