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