Activity #972
User #215 reacted wow post #265
4/23/2025, 10:55:54 PM
Overview
reactions / #972
User #215 reacted wow post #265
4/23/2025, 10:55:54 PM
User #215 reacted wow post #265
4/23/2025, 10:55:54 PM
View recordUser #215 reacted wow post #265 · 4/23/2025, 10:55:54 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/972" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/972" ); 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/972"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/972"
)
reaction = res.json() Response
{
"id": 972,
"userId": 215,
"targetType": "post",
"targetId": 265,
"type": "wow",
"createdAt": "2025-04-23T22:55:54.313Z"
}