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