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