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