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