Activity #1449
User #222 reacted wow post #277
10/5/2025, 4:35:45 AM
Overview
reactions / #1449
User #222 reacted wow post #277
10/5/2025, 4:35:45 AM
User #222 reacted wow post #277
10/5/2025, 4:35:45 AM
View recordUser #222 reacted wow post #277 · 10/5/2025, 4:35:45 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/reactions/1449" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/reactions/1449" ); 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/1449"
);
const reaction = (await res.json()) as Reaction; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/reactions/1449"
)
reaction = res.json() Response
{
"id": 1449,
"userId": 222,
"targetType": "post",
"targetId": 277,
"type": "wow",
"createdAt": "2025-10-05T04:35:45.559Z"
}